¡@

Home 

c# Programming Glossary: customclass

How to modify PropertyGrid at runtime (add/remove property and dynamic types/enums)

http://stackoverflow.com/questions/313822/how-to-modify-propertygrid-at-runtime-add-remove-property-and-dynamic-types-enu

System.Windows.Forms.PropertyGrid propertyGrid1 private CustomClass myProperties new CustomClass public Form1 InitializeComponent.. propertyGrid1 private CustomClass myProperties new CustomClass public Form1 InitializeComponent myProperties.Add new CustomProperty.. Custom typeof StatesList false true doesn't work summary CustomClass Which is binding to property grid summary public class CustomClass..

c# Dictionary: making the Key case-insensitive through declarations

http://stackoverflow.com/questions/6676245/c-sharp-dictionary-making-the-key-case-insensitive-through-declarations

the .NET framework is I can do this Dictionary string CustomClass _recordSet new Dictionary string CustomClass StringComparer.InvariantCultureIgnoreCase.. string CustomClass _recordSet new Dictionary string CustomClass StringComparer.InvariantCultureIgnoreCase And that works great... Like the following Dictionary int Dictionary string CustomClass _customRecordSet new Dictionary int Dictionary string CustomClass..