Binarysharp.MemoryManagement.Assembly.CallingConvention.FastcallCallingConvention.FormatCalling C# (CSharp) Method

FormatCalling() public method

Formats the call of a given function.
public FormatCalling ( IntPtr function ) : string
function System.IntPtr The function to call.
return string
        public string FormatCalling(IntPtr function)
        {
            return "call " + function;
        }