我是C#的新手,我正在學習它,它只是一個虛擬測試程序。我收到了這篇文章標題中提到的錯誤。以下是C#代碼。錯誤:成員名稱不能與其封閉類型相同
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
namespace DriveInfos
{
class Program
{
static void Main(string[] args)
{
Program prog = new Program();
prog.propertyInt = 5;
Console.WriteLine(prog.propertyInt);
Console.Read();
}
class Program
{
public int propertyInt
{
get { return 1; }
set { Console.WriteLine(value); }
}
}
}
}
錯誤信息的哪一部分不清楚? – hvd
爲什麼你需要'Program'中定義的'Program'?只要改名字! – crashmstr
更改Program使用的程序名稱 – Adrian