I have this code in C# (as an ImportLibrary):
[IgnoreNamespace]
[Imported]
public class MyClass
{
public object Value
{
get { return null; }
set { }
}
}
and I then comsume the class like this:
myClass.Value = 0;
obj val = myClass.Value;
Everthing is fine and compiles - so that is good :) However, the result is something like this:
myClass.set_value(0);
var val = myClass.get_value();
of what I really wanted was:
myClass.setValue(0);
var val = myClass.getValue();
So, NO underscore (_) and a capital letter. How can I control this? I've tried with [ScriptName("Value")], but with no luck.