这是一个真正的新手问题。请不要对我大喊。我确实没有运气就搜索过它。在C#DotNet中“虚拟化字符串”是什么意思?假设我有以下代码。虚拟化字符串是什么意思?
using System;
namespace MyNameSpace
{
public class MyClass
{
private const string _SECRET_STRING = "keep this secret";
private string GetSecretString()
{
return(_SECRET_STRING);
}
}
}