UDKExplorer.UDK.UDKObject.GetName C# (CSharp) Method

GetName() public method

public GetName ( int Index ) : string
Index int
return string
        public string GetName(int Index)
        {
            string s = "";
            if (isName(Index))
                s = Names[Index].name;
            return s;
        }