UnityEditor.EditorPrefs.SetString C# (CSharp) Method

SetString() private method

private SetString ( string key, string value ) : void
key string
value string
return void
        public static extern void SetString(string key, string value);
    }

Usage Example

 internal static void SetPassword(string server, string user, string password)
 {
     EditorPrefs.SetString("ASPassword::" + server + "::" + user, password);
 }
All Usage Examples Of UnityEditor.EditorPrefs::SetString