.Net

Friday, May 20th, 2011 | Author: Mr. A

I needed to create different threads for a foreach loop and found this great article: http://dotnet.dzone.com/articles/parallelizing-windows

var magicString = string.Empty;

var list = new List<string> {".NET", "Zone"};
Parallel.ForEach(list, oneString =>;
{
magicString += oneString;
});

Category: .Net, C#  | Leave a Comment
Wednesday, August 25th, 2010 | Author: The E

It’s true. Funny how I found out too. As soon as I realized that the AJAX was not working I immediately started deleting all the extra code that I had written since it was working, the whole time passing my gaze to a line I had written for testing purposes: Response.Write(”test”) and saying “…Nah.”

The reason Response.Write voids any use of AJAX is because it interferes with the page life cycle and all the ajax calls cant interrupt it therefore finishing your ajax career.

Source

Wednesday, February 24th, 2010 | Author: The E

Source

This guy derek wrote his own reg ex tester for .net. It seems like there is better software for this but this seems to work very well so until we find something better this should do it.

Category: .Net, C#  | Leave a Comment