Tag: Development

Community

Rosario: The Future of Work Items

(Mickey Gousset) We’ve talked about the Visual Studio Team System’s work item tracking system in past columns. It’s a powerful yet easy-to-use and extensible way to keep track of all the “stuff” that needs to be done for a project. However, one feature missing from Team System was the ability to cre

Community

LINQ Query Expressions

(Charlie Calvert and Dinesh Kulkarni) This chapter explores the various rules and syntactical elements that define the structure of LINQ query expressions. The text covers the seven different types of query expression clauses and explains the four ways in which they introduce range variables. In the

Community

Programming a Dynamic Method in C#

(Paul Kimmel) Until .NET 2.0, when emitting MSIL (Intermediate Language) by the Reflection namespace, you were required to generate a dynamic assembly and dynamic type to contain a method. Once created in memory these dynamic assemblies just hung around. In .NET 2.0 the DynamicMethod was introduced.