UnityEditor.EditorPrefs.GetString C# (CSharp) 메소드

GetString() 개인적인 메소드

private GetString ( string key ) : string
key string
리턴 string
        public static string GetString(string key)
        {
            string defaultValue = "";
            return GetString(key, defaultValue);
        }

Same methods

EditorPrefs::GetString ( string key, [ defaultValue ) : string

Usage Example

예제 #1
0
 public string GetString(string key)
 {
     return(EditorPrefs.GetString(key));
 }
All Usage Examples Of UnityEditor.EditorPrefs::GetString