Hi..
Feels like I'm posting here almost every day now
I've made this class, but whenever I try to set a value in it, honorbuddy exits with an stackoverflow error
the stack overflow is at the bold {, at the first set.. (according to debugging in Visual studio .NET 2010)
Hope someone can help
Feels like I'm posting here almost every day now

I've made this class, but whenever I try to set a value in it, honorbuddy exits with an stackoverflow error
Code:
private class steps
{
public int stepId { get { return stepId; } set [B]{[/B] stepId = value; } }
public int questId { get { return questId; } set { questId = value; } }
public string questName { get { return questName; } set { questName = value; } }
public string action { get { return action; } set { action = value; } }
}
Hope someone can help

Last edited: