StandardizedDiffuseAlbedoMaps.Form1.GetRegKeyInt C# (CSharp) Method

GetRegKeyInt() private method

private GetRegKeyInt ( string _Key, float _Default ) : int
_Key string
_Default float
return int
        private int GetRegKeyInt( string _Key, float _Default )
        {
            string	Value = GetRegKey( _Key, _Default.ToString() );
            int		Result;
            int.TryParse( Value, out Result );
            return Result;
        }
Form1