Showing results for Category : Visual Studio

Oct 22, 2009
0
0

Announcing the Visual Studio Blog!

Visual Studio Team
Visual Studio Team

Since this week is already filled with other notable launches, we figured it would be fitting to unveil one more important launch: The Visual Studio Blog!  Since the majority of our users are utilizing not just one, but multiple aspects of Visual Studio in their daily development, we wanted to take the same approach with our blog and point our...

Oct 19, 2009
0
0

Dynamic in C# 4.0: Creating Wrappers with DynamicObject

Visual Studio Team
Visual Studio Team

In the previous post I showed how you can use the new dynamic feature and the ExpandoObject class to add and remove properties at run time, and how this can make your code more readable and flexible than code written with LINQ to XML syntax. But there were some obvious flaws in that example: While ExpandoObject provided better syntax, LINQ to XML ...

C#Node.jsVisual Studio 2010
Sep 30, 2009
1
0

Dynamic in C# 4.0: Introducing the ExpandoObject

Visual Studio Team
Visual Studio Team

You have probably already heard about the new dynamic feature in C# 4.0 and how it is used to support COM interop. If you haven't, I strongly recommend reading the following MSDN articles: Using Type dynamic and How to: Access Office Interop Objects by Using Visual C# 2010 Features. Well, where else can you use this new feature? What are the use ca...

C#Node.jsSQL
Sep 14, 2009
0
0

Generating Dynamic Methods with Expression Trees in Visual Studio 2010

Visual Studio Team
Visual Studio Team

Expression trees first appeared in Visual Studio 2008, where they were mainly used by LINQ providers. You can use expression trees to represent code in a tree-like format, where each node is an expression. You can also convert expression trees into compiled code and run it. This transformation enables dynamic modification of executable code as well...

C#Node.jsVisual Studio 2010
Mar 25, 2009
0
1

How to use LINQ methods to compare objects of custom types

Visual Studio Team
Visual Studio Team

LINQ provides a convenient syntax and many useful methods for operating with collections of objects. However, to be correctly processed by LINQ comparison methods such as Distinct or Intersect, a type must satisfy certain requirements.Let’s take a look at the Distinct method, which returns all distinct objects from a collection.List<int>...

C#.NET Framework