Scott Cate's WebLog

You just don't know what
you don't know.

community

frenz

my book(s)

my products

Browse by Tags

All Tags » C# (RSS)
TechEd Orlando :: Compiler Tricks
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...
How do you setup a family of .net assemblies that can see each others internals?
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...
Posted: Jul 19 2007, 09:55 AM by scott cate | with 6 comment(s)
Filed under: ,
DateTime.ToString() Patterns
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
Posted: Jun 19 2007, 12:22 AM by scott cate | with no comments
Filed under: ,
CS0117 :: 'Type' does not contain a definition for 'Identifier'
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...
Posted: Jun 10 2007, 03:26 PM by scott cate | with 16 comment(s)
Filed under: ,
Resharper : Don't develop with out it.
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...
Very Quick MVP Pattern to Use with ASP.NET
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...
My C# Code Formatting.
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...
Part 1 of 2 : Delegates in .NET and MS Ajax
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...
Florida.NET User Group a Success -- Thanks Dave Noderer
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...
Posted: Sep 13 2006, 03:32 AM by scott cate | with 6 comment(s)
Filed under: , ,
More Posts