パス名称結合


作成したパス表現

FullPathと同じだがパスデリミタが"/"


string basedir = "http://hoge.com/"; string path = "/index.html"; string buildPath = FullURL(basedir,path); // buildPath = "http://hoge.com/index.html"となる。
string basedir = "http://hoge.com/"; string path = "/index.html"; string buildPath = FullURL(basedir,path); // buildPath = "http://hoge.com/index.html"となる。