-
March 06, 2009 by bcherry
Custom .NET Collection Filters with C# Extension Methods
Have you ever had a collection (it doesn’t matter what kind of collection), and done some filtering on it using LINQ methods? For example, the following: This is a pretty common usage of the LINQ extension method Where(). The above … Read More
- Filed under: C#
- No Comments »
-
February 04, 2009 by admin
Web Design Cool List
Here is a web design cool list that our firm made and it is being used or was used by millions of cool individuals. Some of these designs did not happen overnight and was worked out with our clients. 1.) … Read More
- Filed under: C#, Xillent Talk
- 5 »
-
January 19, 2009 by Mark.C
How to declare variables in the .NET framework using C#
DEFINITIONS: A variable is a specific location used to store data. In order to declare a variable you have to state a data type. Some common data types are: HOW TO: Examples of declaring ints: Examples of declaring doubles: Examples … Read More
- Filed under: C#, Code Sharing
- 1 Comment »