dwhittaker

Stories submitted by dwhittaker

Code Contracts Primer – Part 1: Introduction (devlicio.us)

submitted by dwhittakerdwhittaker(13.1k) 2 years, 11 months ago

If you are not familiar with the Code Contracts library which is coming out of Microsoft R&D labs, you need to check this pretty cool little library out. As of Vs2010/.Net 4.0 this library will be making the jump out of the R&D labs. This is the first in a series where we will walk though various parts of the contracts library. read more...

add a comment |category: |Views: 16

tags: another

Learning how to add IntelliSense for the Spark View Engine(dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 2 years, 11 months ago

Learning how to add IntelliSense for the Spark View Engine inside Visual Studio read more...

add a comment |category: |Views: 392

tags: another

How to Create a Custom Performance Counter(dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 2 years, 11 months ago

Taking a look at how to create custom performance counters for usage in your application Part of the core .net framework allows you to create code which can hook into the underlying performance counters which the windows OS has. We will show how you can easily create hooks to take advantage of these counters. read more...

add a comment |category: |Views: 361

tags: another

Saying Hello to the Spark View Engine(dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 2 years, 11 months ago

Taking a introductory look at the Spark View engine. The Spark is a view engine for Asp.Net Mvc and Castle Project MonoRail frameworks. The idea is to allow the html to dominate the flow and the code to fit seamlessly. read more...

2 comments |category: |Views: 419

tags: another

Learning the Observer Pattern w/ Callbacks(dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 3 years ago

Taking another look at how we can use the Observer Pattern in our application, but this time we will implement the pattern using call backs and events. The Observer pattern allows you to define a one-to-many relationship inside your application where the parent object (the one) has the ability to notify the child objects (the many) of any state change. You can utilize this pattern to make sure that a set of objects are keep in order when there behavior needs to change based on the state of your application. read more...

add a comment |category: |Views: 322

tags: another

Learning the Observer Pattern(dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 3 years ago

Taking a look at how we can use the Observer Pattern in our application. The Observer pattern allows you to define a one-to-many relationship inside your application where the parent object (the one) has the ability to notify the child objects (the many) of any state change. You can utilize this pattern to make sure that a set of objects are keep in order when there behavior needs to change based on the state of your application. read more...

add a comment |category: |Views: 374

tags: another

Testing MVC Routes(dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 3 years ago

Taking a look at how you can test your routes in an MVC application. We will start the process of creating new functionality for our application in this episode by showing how to create the tests for the routes first by using MvcContrib project. In the next episode we will continue creating our routes to make the tests pass. read more...

add a comment |category: |Views: 181

tags: another

Introduction to Mixins For the C# Developer(codethinked.com)

submitted by dwhittakerdwhittaker(13.1k) 3 years ago

If you are a C# developer then you may keep hearing about all the cool kids from Smalltalk, Ruby, Python, Scala using these crazy things called mixins. read more...

add a comment |category: |Views: 413

tags: another

Learning the Adapter Pattern(dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 3 years ago

Taking a look at how you can use the Adapter Design Pattern in your applications. read more...

add a comment |category: |Views: 307

tags: another

Getting your Func<T> along with your Action<T> on(dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 3 years ago

Taking a look at how you can utilize Func<T> along with your Action<T> to replace the usage of typed delegates in your application read more...

add a comment |category: |Views: 419

tags: another

Navigate your codebase like a pro with ReSharper 4.5(dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 3 years, 1 month ago

Taking a look at how you can navigate your souce code using ReSharper 4.5 read more...

add a comment |category: |Views: 394

tags: another

Learning how to harness the power of NUnit RowTest(dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 3 years, 1 month ago

Taking a look at how you can utilize the power of RowTests within NUnit. By learning how to use RowTests you can reduce the amount of duplicate test code which exists when doing data driven tests. read more...

add a comment |category: |Views: 258

tags: another

How to modify the T4 templates used by Sharp Architecture(dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 3 years, 1 month ago

Taking a look at how you can modify the T4 templates which are used to change the default generation behavior of Sharp Architecture read more...

add a comment |category: |Views: 195

tags: another

Building a Nant Script -- Part 4: Adding fxCop to your build script(dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 3 years, 1 month ago

Taking a look at how to add in the ability to run the fxCop static analysis tool to your build script. Having this ability can allow you to keep very close tabs on your code at any time. read more...

add a comment |category: |Views: 204

tags: another

Learning the Template Pattern(dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 3 years, 1 month ago

Taking a look at how you can use the Template Design Pattern in your applications. The Template Design Pattern is perhaps one of the most widely used and useful design pattern. It is used to set up the outline or skeleton of an algorithm, leaving the details to specific implementations later. This way, subclasses can override parts of the algorithm without changing its overall structure. read more...

add a comment |category: |Views: 424

tags: another

Creating SOLID Code: Refactoring the SOLID episode on DI to use IoC(dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 3 years, 1 month ago

Taking a look at the prior SOLID episode on DI and refactoring it to utilize the StructureMap IoC Container read more...

add a comment |category: |Views: 195

tags: another