In a not-too-recent blog posting, Rocky discuissed code reduction in 3.5. He included this code:
private static PropertyInfo<string> NameProperty =
RegisterProperty<string>(typeof(CertificationEdit), new PropertyInfo<string>("Name"));
public string Name
{
get { return GetProperty<string>(NameProperty); }
set { SetProperty<string>(NameProperty, value); }
}
Can anyone tell me what "CertificationEdit" is?
thanks,
Frazer
Yes, it's the name of the class to which the property belongs
Copyright (c) Marimer LLC