What are dependency properties in silverlight?

What are dependency properties in silverlight?

Dependency properties are exposed as CLR properties. Dependency properties’ purpose is to provide a way of computing the value of a property that is based on the value of other inputs. These inputs might include user preference, JIT property determination mechanisms like binding of data and animation, storyboards etc. A dependency property can be implemented for providing callbacks which propagates changes to other properties.
Difference between Finalize() and Dispose() - C#.NET
What is the difference between Finalize() and Dispose()? - Dispose() is called by as an indication for an object to release any unmanaged resources it has held...
How does the XmlSerializer work? - C#.NET
How does the XmlSerializer work? - The XmlSerializer constructor generates a pair of classes derived from XmlSerializationReader and XmlSerializationWriter by analysis of the classes using reflection...
What are circular references? How garbage collection deals with circular references.
C#.Net - What are circular references? - A circular reference is a run-around wherein the 2 or more resources are interdependent on each other rendering the entire chain of references to be unusable...
Post your comment