CSPspEmu.Gui.Winforms.ButtonMappingForm.GetCachedControllerConfigField C# (CSharp) Method

GetCachedControllerConfigField() static private method

static private GetCachedControllerConfigField ( string Name ) : FieldInfo
Name string
return FieldInfo
        static FieldInfo GetCachedControllerConfigField(string Name)
        {
            if (!_CacheControllerConfigField.ContainsKey(Name))
            {
                _CacheControllerConfigField[Name] = typeof(ControllerConfig).GetField(Name);
            }
            return _CacheControllerConfigField[Name];
        }