Requirements This tutorial assumes a basic knowledge of C# and basic binary/logical operators. Scenario QuoteYou're writing an application with multiple settings that require saving to disk or to memory, but there are potentially hundreds of flags that need to be tracked/saved; the settings file doesn't necessarily have to be human readable and you want to save memory wherever you can. The madness of bool In order to appease the previous scenario, assume you have the following class with several arbitrary settings that need to be saved: public class Example { public Boolean usesFastBrowse { get; set; } public Boolean Validates { get; set; } public Boolean isHD { get; set; } } This seems like a perfectly...


I guess you came to this post by searching similar kind of issues in any of the search engine and hope that this resolved your problem. If you find this tips useful, just drop a line below and share the link to others and who knows they might find it useful too.

Stay tuned to my blogtwitter or facebook to read more articles, tutorials, news, tips & tricks on various technology fields. Also Subscribe to our Newsletter with your Email ID to keep you updated on latest posts. We will send newsletter to your registered email address. We will not share your email address to anybody as we respect privacy.


This article is related to

C#,.NET,Architect,Intermediate,VS2010,.Net,Articles,Computer Tutorials