原始类型枚举 - 它是否存在
我需要向用户提供所有可用基本类型的列表,并且想知道 .net 库中是否有一个包含所有基本类型的 Enum,这样我就不必构建一个 Enum。
I need to provide a user a list of all primitive types available and was wondering if there is an Enum in the .net library that has all primitive types, so that I don't have to build one.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
不是枚举,而是:
Not an enum, but:
您将获得的最接近的是 System.TypeCode。
The nearest you are going to get is System.TypeCode.
不,不存在这样的枚举。
No, there is no such enum.