MsgPack.Serialization.EmittingSerializers.SerializerEmitter.DefinePrivateMethod C# (CSharp) Method

DefinePrivateMethod() public method

Gets the IL generator to implement specified private instance method.
public DefinePrivateMethod ( string methodName, bool isStatic, Type returnType ) : ILMethodConctext
methodName string The name of the method.
isStatic bool true for static method.
returnType System.Type The type of the method return value.
return ILMethodConctext
		public ILMethodConctext DefinePrivateMethod( string methodName, bool isStatic, Type returnType, params Type[] parameterTypes )
		{
			return this.DefineMethod( methodName, false, isStatic, returnType, parameterTypes );
		}