예제 #1
0
파일: IseSkin.cs 프로젝트: elfen20/iseskin
        public static bool readARGB(IniReader reader, string section, string name, out ARGB color)
        {
            color = ARGB.Transparent;
            string value = "";

            if (reader.GetValue(section, name, ref value))
            {
                color = ARGB.FromString(value);
                return(true);
            }
            return(false);
        }