C# 当前上下文中不存在名称“MessageBox”
usingSystem;usingSystem.Windows.Forms;publicclassASCII_test{staticvoidMain(){constint...
using System;
using System.Windows.Forms;
public class ASCII_test
{
static void Main()
{
const int StartChar = 'a';
const int EndChar = 'b';
string Output = " ";
for (int i = StartChar; i <= EndChar; i++)
{
Output += string.Format("{0} = {1}", i, (char)i) + "\n";
}
MessageBox.Show(Output);
}
}
错误 1 当前上下文中不存在名称“MessageBox"
这是为什么?
C#新手求帮助啊。。。 展开
using System.Windows.Forms;
public class ASCII_test
{
static void Main()
{
const int StartChar = 'a';
const int EndChar = 'b';
string Output = " ";
for (int i = StartChar; i <= EndChar; i++)
{
Output += string.Format("{0} = {1}", i, (char)i) + "\n";
}
MessageBox.Show(Output);
}
}
错误 1 当前上下文中不存在名称“MessageBox"
这是为什么?
C#新手求帮助啊。。。 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询