Globals.PluginSetSelector.getPath C# (CSharp) Method

getPath() public static method

public static getPath ( string Name ) : string
Name string
return string
        public static string getPath(string Name)
        {
            for (int i = 0; i < pluginInfo.Names.Count; i++)
                if (pluginInfo.Names[i] == Name)
                    return pluginInfo.Paths[i];
            return string.Empty;
        }