StandardizedDiffuseAlbedoMaps.Form1.GetRegKey C# (CSharp) Method

GetRegKey() private method

private GetRegKey ( string _Key, string _Default ) : string
_Key string
_Default string
return string
        private string GetRegKey( string _Key, string _Default )
        {
            string	Result = m_AppKey.GetValue( _Key ) as string;
            return Result != null ? Result : _Default;
        }
Form1