0
這是string.Format
上的錯誤還是什麼?爲什麼會拋出System.FormatException?
// Act
string l = "This is an UnitTest embedded resource.";
string r = "Please do not remove or change. Sincerely yours, {0}".FormatWith(model.Username);
string expected = "[\r\n\t{0}\r\n\r\n\r\n]\r\n{\r\n\t\r\n\t{1}\r\n\r\n}".FormatWith(l, r);
的FormatWith
方法僅僅是語法糖的延伸。
public static string FormatWith(this string text, params object[] args)
{
return string.Format(text, args);
}
什麼是模型和model.Username? –
什麼是'FormatWith'?它不是BCL'字符串'擴展方法。 – Oded
您可以粘貼FormatWith擴展方法的代碼嗎? – ivowiblo