Borodar.RainbowFolders.Editor.FolderColorsStorage.GetIconsByColor C# (CSharp) Method

GetIconsByColor() public method

public GetIconsByColor ( FolderColorName color ) : FolderIconPair
color FolderColorName
return FolderIconPair
        public FolderIconPair GetIconsByColor(FolderColorName color)
        {
            var colorFolder = ColorFolderIcons.Single(x => x.Color == color);
            return new FolderIconPair { SmallIcon = colorFolder.SmallIcon, LargeIcon = colorFolder.LargeIcon };
        }
FolderColorsStorage