Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8328187
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T01:21:29+00:00 2026-06-09T01:21:29+00:00

I am learning Anonymous Type in C#, I have understood how they are defined

  • 0

I am learning Anonymous Type in C#, I have understood how they are defined and used. Below is a sample code I have tried for Anonymous Type.

var myType = new {
Name = "Yasser",
City = "Mumbai"
};
Console.WriteLine("Name: {0}, Type: {1}", myType.Name, myType.City);

My Question

Where in real world scenario, will these be used ? Can anyone give me an example or scenario where these Anonymous Type could be used.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-09T01:21:30+00:00Added an answer on June 9, 2026 at 1:21 am

    LINQ queries use them a lot:

    var productQuery = 
        from prod in products
        select new { prod.Color, prod.Price };
    

    The { prod.Color, prod.Price } is an anonymous type that has a read-only Color and Price property. If you would iterate through the results of that query you could use that type as any other class:

    foreach (var v in productQuery)
    {
        Console.WriteLine("Color={0}, Price={1}", v.Color, v.Price);
    }
    

    In other words, you didn’t have to define a new class that would look something like this:

    public class ColoredPricedItem
    {
        public Color {get;}
        public Price {get;}
    }
    

    Even more, Color and Price types are correctly inferred from your query.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

learning about loops (still a beginner) in VB.net. I have got the below code
Learning xml, Can anyone help me? I have following XML code: **<book lang=en>name of
I am learning Lua and have come across the concept of anonymous functions. It's
Learning WPF nowadays. Found something new today with .Net dependency properties. What they bring
Learning some VBA. So far, I've constructed this piece of code which should allow
Learning jquery, so please be kind :) Using PHP, I have a table with
While learning on anonymous methods, i've found the following example on the internet: namespace
(learning c#) I have a C# WPF application which when a certain form is
Learning to use Ruby Threads for transportability of code between different OS platforms. The
Learning php! I have a sql database which contains a table called 'images' which

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.