I use this code in WPF to check properties.
if (TypeDescriptor.GetProperties(this)[propertyName] == null)
{
}
I want to use the same logic in Silverlight 3, but there is no TypeDescriptor. Anyone know an alternative way to do this in Silverlight.
source
share