尝试传递值但不取得进展。
场景:拥有一个公共常量字符串,如下所示。
public const string ImageFile = @"http://xyz.com/scom/{0}?type={1}&wid={2}";
然后,我将获得上述所需的0,1,2所需的相关值。
问题是如何将我对0,1,2的值传递给上面的const字符串?
我的最终结果应该是
string mySTring = "http://xyz.com/scom/123?type=jpg&wid=200"
请建议。
感谢。
答案 0 :(得分:9)
使用String.Format
:
string ActualImageFile = String.Format(ImageFile, param1, param2, param3);
答案 1 :(得分:3)
string.Format(@"http://xyz.com/scom/{0}?type={1}&wid={2}", param1, param2, param3);
应该做的伎俩。