We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e851944 commit 937cb40Copy full SHA for 937cb40
tools/generator/MethodBase.cs
@@ -30,6 +30,10 @@ public abstract string Deprecated {
30
get;
31
}
32
33
+ // FIXME: this is semantically incorrect. A generic method should rather be evaluated as:
34
+ // GenericArguments != null && GenericArguments.Count > 0.
35
+ // However, changing this part like this causes various build errors especially with Java.Lang.Enum and other various generic parameter resolution,
36
+ // so we should leave this as is (maybe renaming this is an option, in case we want keep using this generator).
37
public virtual bool IsGeneric {
38
get { return parms.HasGeneric; }
39
0 commit comments