在字符串中使用变量

在 PHP 中,我可以做到以下几点:

$name = 'John';
$var = "Hello {$name}";    // => Hello John

C # 中有类似的语言结构吗?

我知道有 String.Format();,但我想知道是否可以不调用字符串上的函数/方法来完成它。

237323 次浏览

Up to C#5 (-VS2013) you have to call a function/method for it. Either a "normal" function such as String.Format or an overload of the + operator.

string str = "Hello " + name; // This calls an overload of operator +.

在 C # 6(VS2015)中引入了字符串插值(如其他答案所述)。

This functionality is not built-in to C# 5 or below.
更新: C # 6现在支持字符串插值,请参阅更新的答案。

推荐的方法是使用 String.Format:

string name = "Scott";
string output = String.Format("Hello {0}", name);

但是,我编写了一个名为 SmartFormat的小型开放源码库,它扩展了 String.Format,这样就可以使用命名的占位符(通过反射)。所以,你可以这样做:

string name = "Scott";
string output = Smart.Format("Hello {name}", new{name}); // Results in "Hello Scott".

Hope you like it!

在 C # 6中,你可以使用 字符串插值:

string name = "John";
string result = $"Hello {name}";

Visual Studio 中的语法突显使其具有高度可读性,并且所有的标记都被检查过。

使用以下方法

1: Method one

var count = 123;
var message = $"Rows count is: {count}";

第2集: 方法二

var count = 123;
var message = "Rows count is:" + count;

方法三

var count = 123;
var message = string.Format("Rows count is:{0}", count);

方法四

var count = 123;
var message = @"Rows
count
is:{0}" + count;

方法五

var count = 123;
var message = $@"Rows
count
is: {count}";

我看到了这个问题和类似的问题,我更喜欢使用内置的方法来解决使用值字典来填充模板字符串中的占位符的问题。下面是我的解决方案,它构建在这个 线的 StringFormatter 类上:

    public static void ThrowErrorCodeWithPredefinedMessage(Enums.ErrorCode errorCode, Dictionary<string, object> values)
{
var str = new StringFormatter(MSG.UserErrorMessages[errorCode]) { Parameters = values};
var applicationException = new ApplicationException($"{errorCode}", new ApplicationException($"{str.ToString().Replace("@","")}"));
throw applicationException;
}

其中消息存在于不在调用方中的 Dictionary 中,但调用方只能访问 Enums。并且可以构建一个参数数组并将其作为参数发送给上面的方法。

假设我们有 MSG.UserErrorMessages [ errorCode ]的值

"The following entry exists in the dump but is not found in @FileName: @entryDumpValue"

这通电话的结果

 var messageDictionary = new Dictionary<string, object> {
{ "FileName", sampleEntity.sourceFile.FileName}, {"entryDumpValue", entryDumpValue }
};
ThrowErrorCodeWithPredefinedMessage(Enums.ErrorCode.MissingRefFileEntry, messageDictionary);

is

The following entry exists in the dump but is not found in cellIdRules.ref: CellBand = L09

此方法的唯一限制是避免在任何传递的值的内容中使用“@”。

you can define a variable as string like this in C#

var varName= data.Values["some var"] as string;