c#的helloworld入门程序

usingSystem;usingSystem.Collections.Generic;usingSystem.Text;namespacehelloworld{clas... using System;
using System.Collections.Generic;
using System.Text;

namespace helloworld
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("helloworld");

}
}
}
此时调试启动以后发现结果一闪而过,我在Console.WriteLine("helloworld");的下面直接加入string str = Console.Readline();以达到按Enter键这个结果才消失的目的,加完之后变成这样:
using System;
using System.Collections.Generic;
using System.Text;

namespace helloworld
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("helloworld");
string str = Console.Readline();
}
}
}
调试之后说错误,错误 1 “System.Console”并不包含“Readline”的定义 ,那么应该怎么定义?怎么实现按Enter才让结果消失的目的。 高手帮忙指点一下,本人初学。
能具体解释吗?
展开
 我来答
南方椰岛
2008-01-19 · TA获得超过744个赞
知道小有建树答主
回答量:271
采纳率:0%
帮助的人:0
展开全部
请写:Console.ReadLine();
C#对大小写严格敏感

Console.ReadLine(); 是读取一行字符串(以Enter键结束)

Console.ReadKey(); 是读取一个字符(随便按什么都可以)

按你的意思应该是用Console.ReadLine();不是Console.ReadKey();吧
zhaigangvvv
2008-01-19 · TA获得超过348个赞
知道小有建树答主
回答量:1190
采纳率:0%
帮助的人:585万
展开全部
对啊,在Main函数尾加语句Console.ReadKey();
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
瓮雯华F8
2008-01-19 · TA获得超过158个赞
知道答主
回答量:170
采纳率:0%
帮助的人:114万
展开全部
把最后一句Readline中小写l改为大写L,就行了
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
vwxyzjn
2008-01-19 · 超过20用户采纳过TA的回答
知道答主
回答量:178
采纳率:0%
帮助的人:104万
展开全部
是Console.ReadKey();
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式