Mono.VisualC.Interop.CppType.ForDelegate C# (CSharp) Method

ForDelegate() public static method

public static ForDelegate ( Type delType ) : CppType
delType System.Type
return CppType
		public static CppType ForDelegate (Type delType)
		{
			if (!typeof (Delegate).IsAssignableFrom (delType))
				throw new ArgumentException ("Argument must be a delegate type");

			throw new NotImplementedException ();
		}