以下のコードは C# で、私は Visual Studio 2010 を使用しています。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
namespace FrontEnd
{
class Flow
{
long i;
private int x,y;
public int X
{
get;set;
}
public int Y
{
get;set;
}
private void Flow()
{
X = x;
Y = y;
}
public void NaturalNumbers(int x, int y)
{
for (i = 0; i < 9999; i++)
{
Console.WriteLine(i);
}
MessageBox.Show("done");
}
}
}
上記のコードをコンパイルすると、次のエラーが発生します。
エラー: 'Flow': メンバー名は、それを囲む型と同じにすることはできません
なんで?どうすればこれを解決できますか?