Nettiers.AdventureWorks.Entities.EntityUtil.InvokeMethod C# (CSharp) Method

InvokeMethod() public static method

Invokes the specified method on the object using reflection.
public static InvokeMethod ( Object entity, String methodName ) : Object
entity Object An object instance.
methodName String The method name.
return Object
		public static Object InvokeMethod(Object entity, String methodName)
		{
			return InvokeMethod(entity, methodName, null, null);
		}

Same methods

EntityUtil::InvokeMethod ( Object entity, String methodName, Object args ) : Object
EntityUtil::InvokeMethod ( Object entity, String methodName, Object args, Type types ) : Object