I am new to c# just trying to mess with it to teach it to myself. I know java and would normally put in getter/setter methods. I am interested in doing it with the following code, but it throws a stack overflow. What am I doing wrong
Calling Code
c.firstName = "a";
Property Code
public String firstName;
{
get
{
return firstName;
}
set
{
firstName = value;
}
}
