1MethodInfo methodInfo = this.GetType().GetMethod(methodName, BindingFlags.Instance | BindingFlags.NonPublic); 2methodInfo.Invoke(this, args); 3 4//note: use BindingFlags.Static if the private method is static