UDKExplorer.UDK.UDKObject.GetClass C# (CSharp) Метод

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

public GetClass ( int Index ) : string
Index int
Результат string
        public string GetClass(int Index)
        {
            if (Index > 0 && isExport(Index - 1))
                return GetName(Exports[Index - 1].name);
            if (Index < 0 && isImport(Index * -1 - 1))
                return GetName(Imports[Index * -1 - 1].name);
            return "Class";
        }