Currently I'm trying to convert a jar file to dll with Xamarin Java Binding project.
Here is the java code
public int compareTo(java.lang.object paramPGAbsEffect)
which becomes
public virtual unsafe int CompareTo (object p0)
in my c# code.
I want to just remove the virtual keyword, because it is not there in Java file.
I tried
... /method[@name='compareTo']" name="virtual">false
but this is not working.