打开vs.net 新建项目
在项目类型栏选择 "Visual C# -> indows" 模板栏选 "控制台应用程序"
输入以下代码
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
string s = Console.ReadLine(); //要求用户输入一行字符串
Console.WriteLine("你输入的字符串为:{0}",s);//再使用占位符输出用户刚输入的字符串
Console.ReadKey(); //任意按键继续
}
}
}