Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 IKVM 将我的 java .jar 文件转换为 .NET .dll 文件。我可以从整数类型的 getter 和 setter 创建一个属性。但是对于 java 代码中的字符串数据类型,我不能这样做。你能告诉我在 map.xml 中用于 IKVM 的字符串或复杂数据类型的格式是什么!!
对于非原始类型,签名表示是“L”+类型名称+“;”。这是一个例子:
<property name="Foo" sig="()Ljava.lang.String;"> <getter name="getFoo" sig="()Ljava.lang.String;" /> <setter name="setFoo" sig="(Ljava.lang.String;)V" /> </property>
对于数组类型,在元素类型签名表示前加上“[”。