本章内容基本上是C#语言基础,更详细的教程可以参照笔者的《C# 高级编程》系列文章,本章主要涉及到的内容为:
int oneNumber = 1;
int twoNumber = 2;
string resultsAsAString = "What is my result?" + oneNumber + twoNumber;
List<string> collection = new List<string>();
string valueToWrite;
for(int i=0;i<=collection.Count;i++)
{
valueToWrite += collection[i];
}
原文:https://www.cnblogs.com/zenronphy/p/BeginASPDotNetLearningChapter4.html