Stories recently tagged with 'AnonymousTypes'

Anonymous Types in C# 3.0(west-wind.com)

submitted by rstrahlrstrahl(7226) 4 years, 6 months ago

One of the most convenient features of C# 3.0 is the ability to create new types 'on the fly' using Anonymous Types. Here's a detailed post that describes how these generated types work, behave and where their use can be very useful. read more...

add a comment |category: |Views: 3

tags: another

New "Orcas" Language Feature: Anonymous Types - ScottGu's Blog(weblogs.asp.net)

submitted by crpietschmanncrpietschmann(11.3k) 5 years ago

Anonymous types are a convenient language feature of C# and VB that enable developers to concisely define inline CLR types within code, without having to explicitly define a formal class declaration of the type. Anonymous types are particularly useful when querying and transforming/projecting/shaping data with LINQ. read more...

add a comment |category: |Views: 15

tags: another