示例#1
0
        public static TempLiftFile TrackExisting(string path)
        {
            Debug.Assert(File.Exists(path));
            TempLiftFile t = new TempLiftFile();

            t._path = path;
            return(t);
        }
示例#2
0
 public static new TempLiftFile TrackExisting(string path)
 {
     Debug.Assert(RobustFile.Exists(path));
     TempLiftFile t = new TempLiftFile();
     t._path = path;
     return t;
 }