KFreonLib.PCCObjects.ME2PCCObject.GetClass C# (CSharp) 메소드

GetClass() 공개 메소드

public GetClass ( int Index ) : string
Index int
리턴 string
        public string GetClass(int Index)
        {
            if (Index > 0 && isExport(Index - 1))
                return Exports[Index - 1].ObjectName;
            if (Index < 0 && isImport(Index * -1 - 1))
                return Imports[Index * -1 - 1].Name;
            return "Class";
        }