コード例 #1
0
 public FullPath(RootPath InRootPath, ScopePath InScopePath)
 {
     mFullPath =
         Path.Combine(InRootPath.ToString(), InScopePath.ToString());
 }
コード例 #2
0
ファイル: DirPath.cs プロジェクト: bencz/csharp-telnet-client
        public DirPath(RootPath InRootPath, ScopePath InScopePath)
        {
            string dirPath = Path.Combine(InRootPath.ToString(), InScopePath.ToString());

            mDirPath = dirPath;
        }
コード例 #3
0
        public RootPath GetRootPath(ScopePath InScopePath)
        {
            string rootPath = Pather.GetRootPath(mFullPath, InScopePath.ToString());

            return(new RootPath(rootPath));
        }
コード例 #4
0
 public ScopePath(ScopePath InDirPath, FileName InFileName)
 {
     mScopePath = Path.Combine(InDirPath.ToString(), InFileName.ToString( ));
 }