RESOLVED. Restarted Dev Environment and code now compiles OK.
In C# I'm trying to create a class that is instantiated by the main program. This class needs a constructor that sets instance vars when said class is instantiated. Simplified code is as follows:
Main:
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Web;
using Alchemy;
using Alchemy.Classes;
using System.Net;
namespace AlchemyWebSocketsTest2
{
class Program
{
public static KHandler _kHandler = null;
static void Main(string[] args)
{
_kHandler = new KHandler();
Console.WriteLine(_kHandler.name);
}
}
}
KHandler:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace AlchemyWebSocketsTest2
{
class KHandler
{
public string name = "wut";
public KHandler()
{
name = "huh";
Console.WriteLine("All Good.");
}
}
}
However, when I try to compile this, I get an error telling me that 'KHandler': member names cannot be the same as their enclosing type
But what I have looks to me almost exactly the same as this example on MSDN, so I am very confused:
http://msdn.microsoft.com/en-us/library/vstudio/k6sa6h87.aspx
What am I doing wrong?
KHandlerclass? It sounds like you have a field or property calledKHandler. – Lee Dec 6 '12 at 18:37