blogged find better blogs
HomeTechnologyEntertainmentSportsPoliticsBusinessHumorWorld NewsLifestyleDirectoryMore Topics
Blog Detail
Sam Gaut's Developer Resource Blog

This blog is primarily a source of reference for myself and may hopefully contain useful information that others can benefit from. It largely reflects my past and current development efforts with object oriented languages like C#, VB.NET and JAVA.
Sam Gaut's Developer Resource Blog  
Related Blogs
previous blog next blog

2 Users are Following

8.0
great
based on editor's review


recent postsrss feed

Working with Reflection

Dec 15, 2009
Managed code sometimes needs the ability to read it's own metadata to find assemblies, type information and module information. Reflection is a feature in .NET that enables us to get information about an object at runtime. We can obtain class method...

Usint int.TryParse over int.Parse

Dec 12, 2009
Often times we will need to determine if user if a variabe contains a number or perhaps a datetime. Parse is great for this, especially when using integers. In the past, I have used int.parse() thousands of times and it always works. Typically, you...

Caching in ASP.NET

Dec 9, 2009
One of the ways to achieve better performance and more scalability in ASP.NET web apps is through Caching. Caching is a technique where by frequently used data is stored within a accessible location, so the data can be fetched quickly in it's entirety...

Structs..... A light-weight Class

Dec 1, 2009
In C# Structs are a lot like classes. Both expose variables, properties and constructors. Both are used to organize data or a common type that organizes your code. There are some differences between the two. For one, Structs are value types while...

Good article on Csharp Threading

Nov 29, 2009
While viewing some Csharp information online the other day, I came accross a really good article on Threading with plenty of easy to understand examples. http://www.albahari.com/threading/ It is definately worth a look!


Comments & Reviews:
Be the First to Review this Blog!