Browse by Tags

All Tags » C# (RSS)

Monitoring settings in a configsection of your app.config for changes

The usage: public static void Main() { using (var configSectionAdapter = new ConfigurationSectionAdapter<ACISSInstanceConfigSection>( "MyConfigSectionName" )) { configSectionAdapter.ConfigSectionChanged += () => { Console.WriteLine( "File has...
Posted by dotjosh | 3 comment(s)
Filed under: ,

My short answer to "If no other engineering discipline does it first, why should I TDD?"

I agree Software Development by the truest form of the word, is in fact Engineering, but not all parallels can be made to its hardware counterparts, especially in its current state of maturity. We can build high amounts of complexity with few people in...

Silverlight BringIntoView() extension method (with OnGotFocus behavior)

It all started because I couldn't find a way to automatically scroll any element into view in Silverlight (a feature that exists in WPF). I take that back, I could get the job done with a ListBox's ScrollIntoView(ListBoxItem item) method, but I hardly...
Posted by dotjosh | 4 comment(s)
Filed under: , , ,
More Posts