将代码从 Java 转换为 .NET
我需要将此片段从 Java 转换为 .NET(而不是 C#,但我也了解 Visual Basic)。 这是代码:
typeStrings = new Dictionary<Int16, String>();
Field[] fields = Type.class.getDeclaredFields();
for (Field field : fields) {
try {
typeStrings.put(field.getInt(null), field.getName());
} catch (IllegalArgumentException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IllegalAccessException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
第一行(字典类)来自.NET(我的翻译尝试;))。 我知道 Field 类来自 java.lang.reflect.Field,但我找不到 .NET 等效类。 亲切的问候!
I need to translate this fragment from Java to .NET (rather C#, but I know Visual Basic too).
This is code:
typeStrings = new Dictionary<Int16, String>();
Field[] fields = Type.class.getDeclaredFields();
for (Field field : fields) {
try {
typeStrings.put(field.getInt(null), field.getName());
} catch (IllegalArgumentException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IllegalAccessException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
First line (Dictionary class) is from .NET (my translation try ;)).
I know the Field class is from java.lang.reflect.Field, but I couldn't found .NET equivalent.
Kind regards!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您正在寻找
System.Reflection.FieldInfo
类和typeof(SomeType).GetFields()
。You're looking for the
System.Reflection.FieldInfo
class andtypeof(SomeType).GetFields()
.尝试这样做
try to do this