C#:如何获取我的枚举的类型定义..?

发布于 2024-08-09 03:12:08 字数 314 浏览 2 评论 0原文

这感觉像是一个非常基本的问题,但我无论如何都无法弄清楚。

如何获取 System.Windows.Visibility 的类型?我需要将类型定义传递给函数。更准确地说,我正在为我正在编写的 IValueConverter 编写单元测试,其中目标类型是 System.Windows.Visibility。调用 Convert.. 时,我应该传递什么作为目标类型?

public object Convert(object value, Type targetType, object parameter, CultureInfo culture)

This feels like a really basic question, but I can't figure it out anyway..

How do I get the type of System.Windows.Visibility? I need to pass the type definition to a function. More precisly I'm writing unit tests for a IValueConverter I'm writing where the target type is a System.Windows.Visibility. What do I pass as target type when calling Convert..?

public object Convert(object value, Type targetType, object parameter, CultureInfo culture)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

南渊 2024-08-16 03:12:08

typeof(System.Windows.Visibility)

typeof(System.Windows.Visibility)

撑一把青伞 2024-08-16 03:12:08

您是否要求 typeof

typeof(System.Windows.Visibility)

Are you asking for typeof ?

typeof(System.Windows.Visibility)
桃气十足 2024-08-16 03:12:08
typeof(System.Windows.Visibility);

就可以了:)

哈哈,一分钟之内就有 3 个完全相同的答案:/

typeof(System.Windows.Visibility);

will do the trick :)

lol, 3 exactly the same answers within a minute of each other :/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文