PERWAPI.InstructionException.AddMethodName C# (CSharp) Method

AddMethodName() private method

private AddMethodName ( string name ) : string
name string
return string
        internal string AddMethodName(string name)
        {
            string istr = " ";
            switch (iType) {
                case (IType.fieldOp) : istr += (FieldOp)op; break;
                case (IType.methOp) : istr += (MethodOp)op; break;
                case (IType.specialOp) : istr += (SpecialOp)op; break;
                case (IType.typeOp) : istr += (TypeOp)op; break;
                default : break;
            }
            return "NullPointer in instruction" + istr + " for method " + name;
        }