What is "CertificationEdit"

What is "CertificationEdit"

Old forum URL: forums.lhotka.net/forums/t/4758.aspx


Frazer posted on Monday, April 28, 2008

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

 

Frazer replied on Monday, April 28, 2008

is this by any chance the name of the class to which the "Name" property belongs?

robert_m replied on Monday, April 28, 2008

Yes, it's the name of the class to which the property belongs

Copyright (c) Marimer LLC