Version: 5.4
public static string GetString (string key, string defaultValue= "");

설명

Returns the value corresponding to key in the preference file if it exists.

If it doesn't exist, it will return defaultValue.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void Example() { print(PlayerPrefs.GetString("Player Name")); } }