| c# Programming Glossary: reflectingSerialize a nullable int http://stackoverflow.com/questions/244953/serialize-a-nullable-int  serialization exception saying there was a an error reflecting the type because IsNullable may not be set to 'false' for a.. 
 How costly is .NET reflection? http://stackoverflow.com/questions/25458/how-costly-is-net-reflection  I do during startup of the application. However if you're reflecting inside a series of nested loops with reflection calls on each.. 
 In C#, how can I serialize System.Exception? (.Net CF 2.0) http://stackoverflow.com/questions/390051/in-c-how-can-i-serialize-system-exception-net-cf-2-0  but it gave me a bit more info There was an error reflecting type 'System.Exception'. with InnerException Cannot serialize.. 
 Adding rows programatically to a DataGridView that is data bound? http://stackoverflow.com/questions/4328769/adding-rows-programatically-to-a-datagridview-that-is-data-bound  where YourObject can be a simple class with properties reflecting your database schema. Initially populate the BindingList from.. 
 Serialize Class containing Dictionary member http://stackoverflow.com/questions/495647/serialize-class-containing-dictionary-member  ConfigFile.Load or ConfigFile.Save There was an error reflecting type 'App.ConfigFile'. snip System.NotSupportedException Cannot.. 
 Protect .NET code from reverse engineering? http://stackoverflow.com/questions/506282/protect-net-code-from-reverse-engineering  Themida is one of the better ones. This stops people from reflecting your application in .NET Reflector and makes it a pain to unpack.. 
 Serializing an array of integers using XmlSerializer http://stackoverflow.com/questions/553824/serializing-an-array-of-integers-using-xmlserializer  question   Read the inner exceptions There was an error reflecting type 'SomeType'. Cannot serialize member 'SomeType.Data' of.. 
 XmlSerializer - There was an error reflecting type http://stackoverflow.com/questions/60573/xmlserializer-there-was-an-error-reflecting-type  There was an error reflecting type  Using C# .NET 2.0 I have a composite data class that does.. I am getting an exception saying There was an error reflecting type. Inside the data class there is another composite object... 
 Best practices for using and persisting enums http://stackoverflow.com/questions/746812/best-practices-for-using-and-persisting-enums  meaning of your enum in the database In the source code reflecting the values your enum type or in some external documentation.. 
 |