0

这是一个错误string.Format还是什么?

// 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);
}
4

1 回答 1

6

您的问题是尝试使用{}格式字符串。它们需要转义,否则将被视为格式变量。

将最后一行更改为:

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);
于 2012-05-12T17:54:13.920 回答