Category: Proxy usage
Q
How do I create a Java string from a .NET string?
A
The short answer is: you don't. The runtime does that for you automatically. There is no proxy type for the java.lang.String type; it is translated directly to a .NET string. This is one of the few exceptions in the type mapping from Java to .NET.
