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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T23:32:53+00:00 2026-05-10T23:32:53+00:00

If I’m using a Hashtable , I can write code like this: object item

  • 0

If I’m using a Hashtable, I can write code like this:

object item = hashtable[key] ?? default_value; 

That works whether or not key appears in the Hashtable.

I can’t do that with a Dictionary<TKey. TValue>. If the key’s not present in the dictionary, that will throw a KeyNotFoundException. So I have to write code like this:

MyClass item; if (!(dict.TryGetValue(key, out item)) {    item = default_value; } 

I’m wondering why this is. Dictionary<TKey, TValue> is just a wrapper around Hashtable. Why has this restriction been added to it?

Edit:

For another perspective on PopCatalin’s answer (see below), the code I’d written above won’t work if the dictionary’s values are of a value type. If I’m using a Dictionary<int, int>, then the code I would like to use looks like this:

int i = dict[key] ?? default_value; 

And that won’t compile, because dict[key] isn’t a nullable or reference type.

  • 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. 2026-05-10T23:32:54+00:00Added an answer on May 10, 2026 at 11:32 pm

    The difference between a Dictionary<T> and a Hashtable is that a Dictionary<T> is a generic type that can specialize to store value types along reference types.

    The hashtable can only store reference types (a Object passed by reference) and only value types that are boxed (also passed by reference).

    When a dictionary is specialized with value types, it must return those values ‘by value’ not by reference.So, therefore, a Dictionary<T> can’t return null, as null is not a valid value for value types.

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

Sidebar

Ask A Question

Stats

  • Questions 129k
  • Answers 129k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Which symbols are appearing? You will still get them for… May 12, 2026 at 5:55 am
  • Editorial Team
    Editorial Team added an answer You aren't initializing the StringBuilder and List. StringBuilder Output =… May 12, 2026 at 5:55 am
  • Editorial Team
    Editorial Team added an answer What you're describing is a FileSystem provider that also considers… May 12, 2026 at 5:55 am

Related Questions

I am currently running into a problem where an element is coming back from
Is it possible to replace javascript w/ HTML if JavaScript is not enabled on
If I've got a table containing Field1 and Field2 can I generate a new
If I have interface IFoo, and have several classes that implement it, what is
If I have a trigger before the update on a table, how can I

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.