This is a real newbie question. Please don't yell at me. I did do searches on it with no luck. What does it mean in C# DotNet to "virtualize a string"? Let's say I have the code below. What does it mean to virtualize the string?
using System;
namespace MyNameSpace
{
public class MyClass
{
private const string _SECRET_STRING = "keep this secret";
private string GetSecretString()
{
return(_SECRET_STRING);
}
}
}