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;
        }