Alexandria.GameInstance.ToSource C# (CSharp) Method

ToSource() public method

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