Monobjc.ObjectiveCEncoding.GetSignature C# (CSharp) Метод

GetSignature() публичный статический Метод

Gets the signature for the given method.

Here are some examples of result for methods: Method Corresponding signature (on IA32 architecture) public void DoThis() v8@0:4 public void DoThis(int value) v12@0:4i8 public void DoThis(NSString str, int val) v16@0:4@8i12

If the method is null.
public static GetSignature ( MethodInfo methodInfo ) : String
methodInfo System.Reflection.MethodInfo The method.
Результат String
		public static String GetSignature (MethodInfo methodInfo)
		{
			return GetSignature (methodInfo, 0);
		}

Same methods

ObjectiveCEncoding::GetSignature ( MethodInfo methodInfo, int parametersToSkip ) : String