Ext.Net.ScriptClass.FormatCall C# (CSharp) Method

FormatCall() private method

private FormatCall ( string name ) : string
name string
return string
        protected virtual string FormatCall(string name, params object[] args)
        {
            return "{0}.{1}({2});".FormatWith(this.InstanceOf, name, this.FormatArgs(args));
        }