TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
About Anonymous Type
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Mahesh Chand (2)
Scott Lysle (2)
Mariusz Postol (1)
Gul Md Ershad (1)
Jignesh Trivedi (1)
Abhimanyu K Vatsa (1)
Pankaj Kumar Choudhary (1)
Harieswaran D (1)
Pranay Rana (1)
Rajeev Ranjan (1)
Gaurav Kumar Arora (1)
Aman (1)
Vijay Prativadi (1)
Matt Aghnianejad (1)
Srihari Chinna (1)
Senthilkumar (1)
Satheesh Kumar (1)
Related resources for Anonymous Type
No resource found
Programming in Practice - LINQ Expression
5/6/2024 9:05:50 AM.
An impression can be made that: data is data, and it doesn't matter where it comes from provided it is reliable. The LINQ technology is presented to fetch the necessary data from any available so
Object Initializer in C#
8/24/2023 4:56:28 AM.
What is the Object Initializer in C#. Object initializers is the easiest and fastest way to assign values of an object's properties and fields. An object can be initialized without explicitly call
Different Ways To Create Delegates In C#
8/21/2023 6:06:47 AM.
This article is intended to explain the idea and concept to create Delegate with different approach.
Anonymous Types In C#
6/13/2023 9:19:31 AM.
Anonymous types allow us to create new types without defining them. In this article, you'll learn how to use Anonymous Types in C#.
Anonymous Typed Classes in C#
8/23/2022 9:36:54 AM.
In this quick article, you will take a look at basics of anonymous typed classes in C#.
Anonymous Type In C#
1/13/2016 2:37:25 PM.
In this article you will learn about Anonymous Type in C#.
Tuples and Anonymous Types in C#
7/10/2015 12:35:14 AM.
This article explains tuples and anonymous types in C#.
Return Anonymous Type in C#
2/6/2015 4:54:53 PM.
This article explains returning an anonymous type and how to handle it in code.
New C# Features That Support LINQ
1/9/2015 4:47:13 PM.
In this article we will learn some basic concepts of LINQ and apart from that we can see the C# features that support LINQ.
Anonymous Types In LINQ
12/14/2014 9:21:37 AM.
In this article you will learn about Anonymous Types in LINQ.
Anonymous Types in C#
9/11/2014 2:17:04 AM.
In this article you will learn about Anonymous Types in C#.
Anonymous Types in C#
12/4/2013 4:39:57 PM.
Anonymous types were introduced in C# 3.0 with a special purpose to provide the easiest way to define objects with a few read-only properties.
Downcasting in Visual Basic.NET
11/9/2012 6:32:54 AM.
This article describes a simple approach to downcasting in Visual Basic; downcasting merely refers to the process of casting an object of a base class type to a derived class type.
Anonymous Types in C#
10/11/2012 1:29:47 PM.
Today, in this article let’s play around with one of the interesting and most useful concepts in C#.
How to define conditional fields in anonymous types
9/29/2012 9:53:55 AM.
In this article I would like to show how to define conditional fields in anonymous types I think it is very interesting and useful.
C# Language Enhancements
10/26/2010 2:51:39 PM.
This article talks about some C# language enhancements.
C# 3.0 New Features: Part I
11/26/2009 3:55:56 AM.
This article explains about the new features introduced in C# 3.0 with sample codes.
Downcasting in C#
3/2/2009 12:13:35 AM.
This article describes a simple approach to downcasting in C#; downcasting merely refers to the process of casting an object of a base class type to a derived class type. Upcasting is legal in C# as the process there is to convert an object of a derived class type into an object of its base class type. In spite of the general illegality of downcasting you may find that when working with generics it is sometimes handy to do it anyway.
Using LINQ in Visual Studio 2005
6/20/2007 8:44:52 AM.
LINQ (.Net Language Integrated Query) is the general-purpose standard query operators that allow traversal, filter and projection operations to be expressed in a direct yet declarative way in any .Net programming language.