BloomTemp.TempLiftFile.TrackExisting C# (CSharp) Метод

TrackExisting() публичный статический Метод

public static TrackExisting ( string path ) : TempLiftFile
path string
Результат TempLiftFile
        public static new TempLiftFile TrackExisting(string path)
        {
            Debug.Assert(RobustFile.Exists(path));
            TempLiftFile t = new TempLiftFile();
            t._path = path;
            return t;
        }