C#

Anything and everything to do with the C# programming language.
Community Launch Event | April 10th

The Utah .NET Users Group will be hosting a Community launch event for Visual Studio 2008, Windows Server 2008, and SQL Server 2008. This is a series of event across the country hosted by users groups and sponsored by Microsoft, Ineta, Culminis, and Pass.  The Utah .NET User Group has decided to make this a four part launch event.  The first being a overview of all three new technologies, with the fallowing three being a in depth look at each technology.  I myself will be speaking about SQL Server 2008 during the launch event series.  So please come...

posted @ Tuesday, April 08, 2008 8:46 PM | Feedback (0)

Coding Question: Max Consecutive Characters

Recently I was asked to code a simple method.  This method should take in two parameters a string and a character.  The goal of the method was to count the max number of consecutive times the character parameter appeared in the string.  So an example would be that the string "abaabbaaa" is passed into the method along with the character 'a' The method should then return 3 because the character 'a' appears 3 times in a row.  This seems like a very simple method but it is actually very trick to make it efficient.  So let see what you guys...

posted @ Saturday, April 05, 2008 11:32 AM | Feedback (1)

Waiting Page

Today I was tasked with creating a simple wait page that could be used throughout our web application. This is very simple and can be quite robust with some simple Java scripting. However, here comes the bombshell, we have clients that are using Windows 95 so anything that is implemented in java script has to have an alternative. So I thought for awhile, I figured that the clients that where using Windows 95 would be used to waiting so showing them a waiting page was not very important to me. So here is the solution I came up with.   If you take a look at...

posted @ Tuesday, November 13, 2007 10:00 AM | Feedback (2)