這的數目不詳的方法是我的代碼:如何建立使用參數EN C#
private static string AddURISlash(string remotePath)
{
if (remotePath.LastIndexOf("/") != remotePath.Length - 1)
{
remotePath += "/";
}
return remotePath;
}
但我需要這樣的東西
AddURISlash("http://foo", "bar", "baz/", "qux", "etc/");
如果我沒有記錯,是的String.Format像不知何故那...
String.Format("{0}.{1}.{2}.{3} at {4}", 255, 255, 255, 0, "4 p.m.");
在C#中有什麼東西允許我這樣做嗎?
我知道我可以做
private static string AddURISlash(string[] remotePath)
,但是這不是想法。
如果這在某些框架中可以完成,而在其他框架中則不需要指定以及如何解決它。
在此先感謝
http://msdn.microsoft.com/en-us/library/w5zay9db%28v=vs.100%29.aspx – 2012-02-28 18:42:53