I know this is stupid for you experts but I did try to find the answer first.
I am running applications some of which require 2.0 and some 1.1.
Can both framework v 1.1 and 2.0 be installed simultaneously?
--
mark b...
more >>
In C# the following code generates a compiler error
("A constant value is expected"):
public void Test(string value)
{
switch (value)
{
case SimpleEnum.One.ToString():
MessageBox.Show("Test 1");
break;
case SimpleEnum.Two.ToString():
MessageBox.Show("Test 2");
break;
case SimpleEnum.Th...
more >>