UnityEditor.EditorPrefs.DeleteKey C# (CSharp) Method

DeleteKey() private method

private DeleteKey ( string key ) : void
key string
return void
        public static extern void DeleteKey(string key);
        /// <summary>

Usage Example

 public void DeleteKey(string key)
 {
     EditorPrefs.DeleteKey(key);
 }
All Usage Examples Of UnityEditor.EditorPrefs::DeleteKey