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

  • SEARCH
  • Home
  • 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 680263
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T01:21:10+00:00 2026-05-14T01:21:10+00:00

I understand that the new ‘dynamic’ keyword in C# 4.0 facilitates interaction with dynamic

  • 0

I understand that the new ‘dynamic’ keyword in C# 4.0 facilitates interaction with dynamic .NET languages, and can help to cut code by using it instead of reflection. So usage is for very specific situations.

However, what I would like to know is if it will give C# all the dynamic benefits that one would get in other dynamic languages such is the IronXXX languages? In other words, will it be possible to write a entire application in C# in a dynamic language style?

And if it is possible, would it be recommended or not. And why, or why not respectively?

Will I get all the benefits of a dynamic language without switching to another language?

  • 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-14T01:21:10+00:00Added an answer on May 14, 2026 at 1:21 am

    I wouldn’t say C# is a first class dynamic language, no.

    Firstly, some of the static typing features really don’t play well with dynamic typing. For example:

    public void ShowListCount(IList foo)
    {
        dynamic d = foo;
        Console.WriteLine(d.Count);
    }
    

    That looks like it should always work, because IList exposes Count, right? Try it with this:

    ShowListCount(new int[10]);
    

    Bang. Arrays implement IList.Count with explicit interface implementation, so when dynamic typing “sees” the object as an array, it doesn’t look see the Count property. There are various gotchas like that.

    Also, if you want to implement dynamic behaviour in C# (i.e. being called dynamically), there’s no explicit language support. You can derive from DynamicObject or implement IDynamicMetaObjectProvider yourself, but nothing in the language is going to help you.

    I regard dynamic typing in C# as something to be used primarily when you want to interoperate with an existing dynamic platform such as IronPython or a weakly-typed COM API. There are some places where it can be useful within pure C#, but they’re relatively rare.

    Basically C# is still very obviously a language designed with static typing in mind. Having the ability to use dynamic typing carefully where you want it is nice, but if you want to use dynamic typing extensively for one area of your codebase, I’d suggest writing that bit in IronPython and then calling into it from C#.

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

Sidebar

Related Questions

I am new to using numpy and one thing that I really don't understand
I studied polymorphism and understand that it can do dynamic method binding like below.
I understand that in general it is a bad idea to start a new
I am new in objective c. I understand that -init() is an instance method
I'm very new to JS, and understand that my script is probably terrible, but
I am very new to Silverlight development. I understand that this is client side
I am very new to concept of IOC and I understand the fact that
I wish to better understand the real-world application of this new feature that consists
Everywhere I read about the new DLR in .net 4, they say that a
I have a problem that i don't understand: I request a new site. A

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.