AddonManager.AddonProject.Catalog.getFileLocation C# (CSharp) Метод

getFileLocation() публичный статический Метод

public static getFileLocation ( String listBoxEntry ) : String
listBoxEntry String
Результат String
            public static String getFileLocation(String listBoxEntry)
            {
                int startIndex = listBoxEntry.IndexOf('(') + 1;
                int endIndex = listBoxEntry.IndexOf(')');
                int numToCrop = endIndex - startIndex;

                return listBoxEntry.Substring(startIndex, numToCrop);
            }
            public static String getListBoxEntryText(String listBoxEntry)