Low memory while inherits DependencyObject and implement IExtensibleDataObject interface
Not sure why compiler keeps throwing the following message while I start to compile the class which implements IExtensibleDataObject with DependencyObject inherited.
"An error has occurred which the C# compiler is unable to report due to low memory or possible heap corruption. It is recommended that you save all your files, close and restart Visual Studio."
The following is how I tried to implements IExtensibleDataObject and inherits DependencyObject.
[
DataContract][
Serializable()]publicclassDataObject :DependencyObject,IExtensibleDataObject{
}
Anyone can help?

