I have the code below :
public class Anything { public int Data { get; set;} } public class MyGenericBase { public void InstanceMethod(T da
To call the static method you need to refer to it from the class it's defined in, not an instance of that class.
MyGenericBase.StaticMethod( null );