BlackFox.Win32.Icons.ExtractFromRegistryString C# (CSharp) Method

ExtractFromRegistryString() public static method

public static ExtractFromRegistryString ( string regString, SystemIconSize size ) : Icon
regString string
size SystemIconSize
return System.Drawing.Icon
        public static Icon ExtractFromRegistryString(string regString, SystemIconSize size)
        {
            string fileName;
            int index;
            ExtractInformationsFromRegistryString(regString, out fileName, out index);
            return ExtractOne(fileName, index, size);
        }