Alexandria.GameInstance.ToSource C# (CSharp) 메소드

ToSource() 공개 메소드

Convert to a string representation of the GameInstance, which is "CurrentSourceVersion\tGameGuid\tGameName\tPath".
public ToSource ( ) : string
리턴 string
        public string ToSource()
        {
            return "0\t" + GameGuid.ToString() + "\t" + GameName.Replace("\\", "\\\\").Replace("\t", "\\t") + "\t" + Path;
        }