BlackFox.Win32.Icons.Extract C# (CSharp) Метод

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

public static Extract ( string fileName, SystemIconSize size ) : List
fileName string
size SystemIconSize
Результат List
        public static List<Icon> Extract(string fileName, SystemIconSize size)
        {
            int iconCount = GetIconsCountInFile(fileName);
            return ExtractEx(fileName, size, 0, iconCount);
        }

Same methods

Icons::Extract ( string fileName, List largeIcons, List smallIcons ) : void