Cinchoo – Configuration framework, part 17
Configuration Object Validation This section is the continuation of previous articles. In here, I’ll go over seamless automatic configuration member validations, another feature provided by Cinchoo...
View ArticleCinchoo – Framework Tips
Here I’m going to talk about couple of tips on using Cinchoo framework in your project. At the start of the application, you must call ChoFramework.Initialize() to initialize the framework and start...
View ArticleCinchoo – Windows Service made easy
Cinchoo framework simplifies the Windows service development. An application developed in this approach is ready to run as Console application as well as self install-able Service application. In this...
View ArticleCinchoo – Collections, NestedList, Part 2
XmlSerialization Now you can serialize/deserialize the ChoNestedList<T> to/from xml. Here is how Serialize Here you can see how to serialize ChoNestedList<T> object to xml string. 1. Add...
View ArticleCinchoo – Collections, NestedList, Part 3
BinarySerialization Now you can serialize/deserialize a ChoNestedList<T> object in binary format. Here is how 1. Add reference to Cinchoo.Core.dll assembly 2. Namespace...
View ArticleCinchoo – Collections, NestedList, Part 4
Clone ChoNestedList<T> provides deep cloning through ICloneable interface. 1. Add reference to Cinchoo.Core.dll assembly 2. Namespace Cinchoo.Core.Collections.Generic Sample code, static void...
View ArticleCinchoo – Collections, NestedList, Part 5
GetListItemAt ChoNestedList<T> provides one another helper method to get the underlying list object at a specified index 1. Add reference to Cinchoo.Core.dll assembly 2. Namespace...
View ArticleCinchoo – Collections, NestedList, Part 6
EnumerateAllChildLists ChoNestedList<T> provides a helper method to get all child list items. 1. Add reference to Cinchoo.Core.dll assembly 2. Namespace Cinchoo.Core.Collections.Generic Sample...
View ArticleCinchoo – Collections, NestedList, Part 7
GetContainedList ChoNestedList<T> provides a helper method to find the list containing an item. 1. Add reference to Cinchoo.Core.dll assembly 2. Namespace Cinchoo.Core.Collections.Generic Sample...
View ArticleCinchoo – Turn your app to Windows Tray app
In this article, I’ll show you how to turn your console / winform application to Windows System Tray application. Cinchoo framework provides a single hosting infrastructure to turn your application...
View Article