Enum.TryParse 在 c# 中的 vs2008 中不支持
Enum.TryParse(,,out) 在 c# 中的 vs2008 中不支持?为什么?我正在尝试使用,但出现 TryParse 未定义的错误。
Enum.TryParse(,,out) not supporting in vs2008 in c#? why? I am trying to use but getting error that TryParse no defined.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
Enum.TryParse
是在 . NET 4。不过,您可能想使用我的 Unconstrained Melody 库,其中包含一些内容类似的,还有许多其他功能。Enum.TryParse
was introduced in .NET 4. However, you might like to use my Unconstrained Melody library which has something similar, and many other features.根据 MSDN,
Enum.TryParse
直到 .NET 4 才添加。VS2008 的目标版本是 .NET 3.5SP1,因此您无法访问此方法。As per MSDN,
Enum.TryParse
was not added until .NET 4. VS2008 targets up to .NET 3.5SP1, so that is why you cannot access this method.这个问题包括许多实现方法:How to TryParse for Enum value?
This question includes a number of implementation approaches: How to TryParse for Enum value?