Python.Runtime.MethodObject.IsStatic C# (CSharp) 메소드

IsStatic() 개인적인 메소드

private IsStatic ( ) : bool
리턴 bool
	internal bool IsStatic() {
	    MethodBase[] methods = binder.GetMethods();
	    for (int i = 0; i < methods.Length; i++) {
		if (methods[i].IsStatic)
		    return true;
	    }
	    return false;
	}