BloomTemp.TempLiftFile.TrackExisting C# (CSharp) Method

TrackExisting() public static method

public static TrackExisting ( string path ) : TempLiftFile
path string
return TempLiftFile
        public static new TempLiftFile TrackExisting(string path)
        {
            Debug.Assert(RobustFile.Exists(path));
            TempLiftFile t = new TempLiftFile();
            t._path = path;
            return t;
        }