A Sandcastle Documented Class Library
FullURL メソッド (baseDir, additionalPath)
名前空間CFW.UtilDirectoryBuilderFullURL(String, String)
パス名称結合
宣言の構文
C#Visual BasicVisual C++
public static string FullURL(
	string baseDir,
	string additionalPath
)
Public Shared Function FullURL ( _
	baseDir As String, _
	additionalPath As String _
) As String
public:
static String^ FullURL(
	String^ baseDir, 
	String^ additionalPath
)
パラメータ
baseDir (String)
既存パス
additionalPath (String)
追加するパス
戻り値
作成したパス表現
解説
FullPathと同じだがパスデリミタが"/"
使用例
CopyC#
string basedir = "http://hoge.com/";
string path = "/index.html";
string buildPath = FullURL(basedir,path);
// buildPath = "http://hoge.com/index.html"となる。

アセンブリ: CFW (モジュール: CFW) バージョン: 1.2.0.2 (1.2.0.2)