类、结构或接口成员声明中的标记“(”无效
我的新手,真心的希望大家能帮我找一下原因!using System;
using System.Collections.Generic;
using System.Text;
namespace MyHelloApp
{
class Program1
{
static void Main(string[] args)
{
Console.WriteLine("hello kanghongwei!!!");
Console.WriteLine("请输入一个字符");
char x = (char)Console.Read(); //这里有一个强制的类型转换
Console.WriteLine(x);
}
}
namespace space1
{
class Program2
{
static byte b1 = 10, b2 = 20;
static byte b3 = (byte)(b1 + b2);
Console.WriteLine(b3); //出错地方在此,左,右括号有问题
}
}
}