“{{”“}}”之间的紫色文字是什么?

时间:2015-02-27 03:31:51

标签: c# asp.net visual-studio

我在Googles Web登录示例(Here)中遇到了此代码,我不知道为什么这是紫色的。 我相信它是某种全球价值,有点像Office中的作者项目。但如果是这样,你如何设置它们?什么叫它?

Purple Text

2 个答案:

答案 0 :(得分:3)

您看到的html文件由应用程序读入,您在花括号之间看到的值将替换为应用程序中的值。查看c#代码以了解这种情况。

https://github.com/googleplus/gplus-quickstart-csharp/blob/master/gplus-quickstart-csharp/signin.ashx.cs

在第117行附近,您将看到值被替换的位置。

答案 1 :(得分:1)

紫色文本是占位符,由实际值替换。请看signin.ashx.cs以获取以下代码:

static public string APP_NAME = "Google+ C# Quickstart";
//...
templatedHTML = Regex.Replace(templatedHTML, "[{]{2}\\s*APPLICATION_NAME\\s*[}]{2}", APP_NAME);