I am new to C#, csla and NHibernate. This might be a novice question but I didn't see a clear explanation elsewhere. Can someone please help me in understanding what is the difference between
public int Property
{
get { return GetProperty<int>(Property); }
private set { SetProperty<int>(Property, value); }
}
and
public int Property{get;set;}