试图传递价值观但没有取得进展。
场景:有一个公共常量字符串,如下所示。
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"
请建议。
谢谢。