Dynamitey.Invocation.Create C# (CSharp) Method

Create() public static method

Creates the invocation.
public static Create ( InvocationKind kind, String_OR_InvokeMemberName name ) : Invocation
kind InvocationKind The kind.
name String_OR_InvokeMemberName The name.
return Invocation
        public static Invocation Create(InvocationKind kind, String_OR_InvokeMemberName name, params object[] storedArgs)
        {
            return new Invocation(kind,name,storedArgs);
        }