Not everything in a bindings library will have the same name in C# as it does in Java.
In C#, interface names start with "I", but Java has no such convention. When you import a Java library, an interface named SomeInterface will become ISomeInterface.
Similarly, Java doesn't have propert...