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 3674338
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T02:50:34+00:00 2026-05-19T02:50:34+00:00

In CLR via C# book it’s mentioned that dynamic keyword corresponding FCL type is

  • 0

In “CLR via C#” book it’s mentioned that dynamic keyword corresponding FCL type is System.Object. please clarify this .

  • 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-05-19T02:50:34+00:00Added an answer on May 19, 2026 at 2:50 am

    It’s not the same thing from the C#’s point of view at all… but in the compiled code, a variable declared as type dynamic will usually (possibly always) correspond with a CLR field or local variable of type object.

    The C# compiler is responsible for making sure that any source code using that value has the dynamic behaviour applied to it. object is simply the compiler the representation uses for storage. It also applies the [Dynamic] attribute where appropriate, so that other code knows it’s to be treated dynamically.

    For example, consider this:

    public class Foo
    {
        public dynamic someField;
    }
    

    I believe that will be compiled into IL equivalent to:

    public class Foo
    {
        [Dynamic]
        public object someField;
    }
    

    now if you write:

    Foo foo = new Foo();
    foo.someField = "hello";
    Console.WriteLine(foo.someField.Length);
    

    the compiler uses the attribute to know that foo.someField is dynamic, so the Length property should be dynamically bound.

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

Sidebar

Related Questions

In chapter eight (p189) of CLR Via C#, Jeffrey Richter states that: A Type
In his excellent book, CLR Via C#, Jeffrey Richter said that he doesn't like
The book of CLR via C# has this line at page 76. When you
In the CLR via c# third edition there is an example that I cant
I was reading CLR via C# and it seems that in this example, the
Does anybody know if it's possible to call method on CLR object via indexer
In CLR via C# , Jeffrey Richter gives the following example of delegate chaining
In CLR via CSharp chapter 10 Properties Jeff Richter writes: A property method can
Reading CLR via C# 2.0 (I dont have 3.0 with me at the moment)
Sorry, if duplicate. I'm reading CLR via C#. Chapter Parameters starts with the explanation

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.