Boo.Lang.Compiler.TypeSystem.TypeSystemServices.GetSignature C# (CSharp) Method

GetSignature() public static method

public static GetSignature ( IEntityWithParameters method ) : string
method IEntityWithParameters
return string
        public static string GetSignature(IEntityWithParameters method)
        {
            return My<EntityFormatter>.Instance.FormatSignature(method);
        }

Usage Example

Example #1
0
 override public string ToString()
 {
     return(_typeSystemServices.GetSignature(this));
 }
TypeSystemServices