jcauble

Stories submitted by jcauble

Effective use of Nullable<T> and the null coalescing operator(caublestoneink.com)

submitted by jcaublejcauble(150) 3 years ago

Just some general usage data on the Nullable object and the null coalescing operator. read more...

add a comment |category: |Views: 15

tags: another

Using Predicate<T>(caublestoneink.com)

submitted by jcaublejcauble(150) 3 years ago

Making use of the Predicate<T> delegate in a reusable fashion to cut down the amount of inline code you need to maintain and / or create. read more...

add a comment |category: |Views: 30

tags: another

Exception Handling Basics(caublestoneink.com)

submitted by jcaublejcauble(150) 3 years, 1 month ago

The basics of exception handling and getting good stack traces. read more...

2 comments |category: |Views: 467

tags: another

Exception woes and the dreaded clr20r3 error(caublestoneink.com)

submitted by jcaublejcauble(150) 3 years, 3 months ago

If you have ever run into this error, I feel your pain. We looked high and low and finally found our problem. So this is information on what we found and maybe it will help you in your search if you are also experiencing this error. read more...

add a comment |category: |Views: 40

tags: another

nAnt: The master build file(caublestoneink.com)

submitted by jcaublejcauble(150) 3 years, 3 months ago

Now that we have a common build file and build files for our projects. This walks through the basic steps needed to chain them all together into one nice process. read more...

add a comment |category: |Views: 41

tags: another

nAnt: Adding a Visual Studio ItemTemplate for project build files(caublestoneink.com)

submitted by jcaublejcauble(150) 3 years, 3 months ago

Based on the build file from our project build file article. This is a ItemTemplate to allow you to quickly add project level build files to your current project. They still need to be filled in of course but this takes care of some of the tasks for you at least. read more...

add a comment |category: |Views: 12

tags: another

nAnt: The project build file(caublestoneink.com)

submitted by jcaublejcauble(150) 3 years, 3 months ago

Next in my build file series. We will cover creating a simple build file to be used at a project level. This is based on our common build file we designed in the previous article. read more...

add a comment |category: |Views: 22

tags: another

nAnt: Desiging your common build file(caublestoneink.com)

submitted by jcaublejcauble(150) 3 years, 3 months ago

Information you can use to help you design and build your own common.xml file you can use on any project. Great if you need to setup new projects as it help to cut down the startup cost for using nAnt. read more...

add a comment |category: |Views: 20

tags: another

Introduction to the Circuit Breaker pattern(caublestoneink.com)

submitted by jcaublejcauble(150) 3 years, 3 months ago

After reading Release it! I was introduced to this pattern. It has become very helpful in our interactions with 3rd party services, components, and various other interaction layers. It's so nice that everybody should be aware of it, as it's so handy. read more...

add a comment |category: |Views: 313

tags: another

Building your code or CI and you(caublestoneink.com)

submitted by jcaublejcauble(150) 3 years, 3 months ago

What is CI, how can it help you and why you should use it. Gotta love CI it's a life saver especially in corporate environments. read more...

add a comment |category: |Views: 2

tags: another

Application Helpers: Protect your method calls(caublestoneink.com)

submitted by jcaublejcauble(150) 3 years, 3 months ago

A simple but effective way to help protect your code while providing a way to refactor some common items. I pulled this technique from various frameworks over the years, namely the Microsoft Enterprise block. read more...

add a comment |category: |Views: 13

tags: another

nAnt: Getting your machine ready(caublestoneink.com)

submitted by jcaublejcauble(150) 3 years, 3 months ago

Part 1 of many steps to use to setup Visual Studio for use with nAnt. Covering Intellisense and setting up file extension support for the nant build files in visual studio. read more...

add a comment |category: |Views: 9

tags: another