ME3Explorer.Packages.ME2Package.getClassName C# (CSharp) 메소드

getClassName() 공개 메소드

public getClassName ( int index ) : string
index int
리턴 string
        public string getClassName(int index)
        {
            string s = "";
            if (index > 0)
            {
                s = names[exports[index - 1].idxObjectName];
            }
            if (index < 0)
            {
                s = names[imports[index * -1 - 1].idxObjectName];
            }
            if (index == 0)
            {
                s = "Class";
            }
            return s;
        }