AlbLib.INI.INIProperty.ToInt32 C# (CSharp) Метод

ToInt32() публичный Метод

public ToInt32 ( ) : int
Результат int
        public int ToInt32()
        {
            int output;
            if(Int32.TryParse(Value, out output))
            {
                return output;
            }else{
                throw new NotSupportedException("Value is not integer.");
            }
        }