Sign in
Jeremiah Clark's Blog
A place to collect my ramblings about Microsoft and the .NET Framework.
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Tags
.Net
Books
C#
C# 3.0
Compilers
Debugging
Hacks
IE8
LINQ
MVC
Off Topic
Opinion
Parallel Computing
Performance
PowerShell
Reflection
SharePoint
SQL
SSRS
Tips
Unit Testing
Unity
Visual Studio
Windows
Workflow
Archive
Archives
February 2012
(1)
August 2011
(1)
January 2011
(3)
December 2010
(1)
January 2010
(1)
May 2009
(2)
April 2009
(1)
February 2009
(7)
December 2008
(1)
November 2008
(4)
October 2008
(2)
September 2008
(3)
August 2008
(2)
July 2008
(5)
June 2008
(2)
April 2008
(1)
March 2008
(4)
February 2008
(7)
January 2008
(2)
October 2007
(1)
September 2007
(9)
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Jeremiah Clark's Blog
Parallel Computing in .NET
Posted
over 6 years ago
by
Jeremiah.Clark
0
Comments
A recent article in MSDN magazine talks about the upcoming CTP release of the Parallel FX library, currently scheduled for the Fall of 2007. You can find the article here: Optimize Managed Code for Mulit-Core Machines. The recent trend with CPUs...
Jeremiah Clark's Blog
Mixing Extension Methods and Anonymous Types
Posted
over 6 years ago
by
Jeremiah.Clark
0
Comments
In my recent post Overcoming the Limitations of Anonymous Types , I talked about ways to get around the method scope and read-only limitations of anonymous types. These were fairly simple examples that used reflection to gather data from the type once...
Jeremiah Clark's Blog
Replacing CMD with PowerShell
Posted
over 6 years ago
by
Jeremiah.Clark
6
Comments
First off, I really like Windows PowerShell . I have been using it for a while now and I find it extremely powerful. I now use it for every command line thing that I do. (I would also recommend the PowerShell Community Extensions . These add some very...
Jeremiah Clark's Blog
Overcoming the Limitations of Anonymous Types
Posted
over 6 years ago
by
Jeremiah.Clark
1
Comments
It seems clear that the new anonymous types feature for C# 3.0 is going to be very useful, however there are a few limitations that come along with them: limited scope and read-only properties. Anonymous types have a method scope. This means that...
Jeremiah Clark's Blog
LINQ Makes Life Easier
Posted
over 6 years ago
by
Jeremiah.Clark
1
Comments
LINQ is really cool. There are tons of examples on the web that show you how to use LINQ to query a database, xml file, text file or collection. This is what LINQ will primarily be used for; to simplify and support the need to provide an association between...
Jeremiah Clark's Blog
Simple GZip compression of files with .NET
Posted
over 6 years ago
by
Jeremiah.Clark
3
Comments
I had to do some file compression recently (which oddly enough I had never had to do before). Compressing files using GZipStream in a few lines of code: using (FileStream fStream = new FileStream( @"C:\test.docx.gzip" , FileMode.Create, FileAccess...
Jeremiah Clark's Blog
Process Explorer v11.0 Released
Posted
over 6 years ago
by
Jeremiah.Clark
1
Comments
A new version of Process Explorer was released today! If you do not already have it, I highly suggest that you download it and use it. It is an amazing tool, basically Task Manager on steroids. You can find just about every conceivable bit of information...
Jeremiah Clark's Blog
C# 3.0 Anonymous Types
Posted
over 6 years ago
by
Jeremiah.Clark
1
Comments
I have been playing around with some of the new C# 3.0 features, and I really have to say that I like the anonymous types. In reality, they do not present a great advantage over typical code defined classes, but they are simple and easy to use and require...
Jeremiah Clark's Blog
A Class Every Developer Should Take
Posted
over 6 years ago
by
Jeremiah.Clark
0
Comments
Last week I attended the Wintellect course entitled Mastering .NET Debugging taught by debugging guru John Robbins . It was a 2-day virtual classroom that utilized Live Meeting. The course was very good and I would highly recommend it to all Windows developers...
Page 1 of 1 (9 items)