AdEvade.Config.ConfigValueHelpers.SetInt C# (CSharp) Method

SetInt() public static method

public static SetInt ( this key, int value ) : void
key this
value int
return void
        public static void SetInt(this ConfigValue key, int value)
        {
            Properties.SetValue(key, value);
        }