PHPAnalysis.MethodCall.CreateFullMethodName C# (CSharp) Метод

CreateFullMethodName() публичный Метод

public CreateFullMethodName ( string className ) : string
className string
Результат string
        public string CreateFullMethodName(string className)
        {
            // HACK - this.Name should NOT already have class name in it!
            // It sometimes has because of the way we handle methodnames when extracting/putting into functionhandler.
            if (this.Name.Contains("->"))
            {
                return this.Name;
            }
            return className + "->" + this.Name;
        }