Browse by Tags
All Tags »
C# (
RSS)
Here is the download project for my Compiler Tricks talk at TechEd Orlando, 2008. The talk focuses on what the C# 3.x compiler does with new syntax, and how you can use most of the 3.x syntax, when targeting a 2.0 build. This doesn't mean you can use...
I've always put my unit tests in a separate assembly/project, so they don't mingle with shipped production code (although I've read that some like to ship the test for debugging purposes). So let's say I have ProjectA.DLL in it is a class. internal class...
This is a great post to bookmark. I always use "s" as a starting point, and then need to go back on look up the rest. http://www.geekzilla.co.uk/View00FF7904-B510-468C-A2C8-F859AA20581F.htm
I just got stuck on something for an hour, that should have taken me 1 minute to find. The error is rather ambiguous, and left me hunting, and searching. Finally I found the answer. From the web searching, there are three or four items that may cause...
If you've ever seen my demo, you've noticed that I use and talk about Resharper a lot. I love it. It does so many things that enhance productivity, it's simply amazing. Here is my favorite feature of the day. Open Files. the myKB.com project has over...
The MVP is used for a lot of reasons, but mainly it does a **VERY** nice job of separating business logic from the UI. M. = Model V. = View P. = Presenter UX. = User Experience ( Web Form in this case) In this implementation of MVP, Model will not be...
I've been asked several times about how the C# code in my blog gets formatted. I use this GREAT! code formatter. It's simple, copy/paste into a text box, pick the technology c#, VB, HTML/ASPX, XML. You can turn on/off line numbers, and alt line...
In Part 1 of 2, I want to show the example that I created today for my talk at VSLive in Dallas. First, let's explore delegates in C# on the server in .net. In part 2, we'll look at how to accomplish the same concept on the client using MS Ajax...
Last night I successfully presented the MVP (Model View Presenter) pattern for the Florida.NET User Group. Dave Noderer runs the group (or helps run the group) and was very hospitable for the few days I was in town. Thanks Dave for the transportation...
More Posts