Answer Posted / test
HashTable class should be used when the collection is large
for performance reasons similarly for small collections
ListDictionary class is used.HybridDictionary Class is a mix
of both the worlds.HybridDictionary Class implements
IDictionary by using a ListDictionary while the collection
is small, and then switching to a Hashtable when the
collection gets large.
[SerializableAttribute]
public class HybridDictionary : IDictionary,
ICollection, IEnumerable
This class is recommended for cases where the number of
elements in a dictionary is unknown.
The constructor accepts a Boolean parameter that allows the
user to specify whether the collection ignores the case when
comparing strings. If the collection is case-sensitive, it
uses the key's implementations of Object..::.GetHashCode and
Object..::.Equals. If the collection is case-insensitive, it
performs a simple ordinal case-insensitive comparison, which
obeys the casing rules of the invariant culture only. By
default, the collection is case-sensitive
A key cannot be nullNothingnullptra null reference (Nothing
in Visual Basic), but a value can
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
Differentiate between Server.Transfer and Response.Redirect with functionality? Why we can choose one over the other?
Explain the difference between debug.write and trace.write?
For which does this Codebehind="MyCode.aspx.cs" is relevent to ?
Explain diff. Betn dataset and recordset?
benefits of migration from asp to asp.net hi frnds, i have to give presentation to a client about how useful would be migrating their project from asp to asp.net .plz give me some points which i should incorporate in my ppt thanks
Write code to send e-mail from an asp.net application?
Can the validation occurs in server-side or client-side? If the validation occurs why should we do?
What are the navigation ways between pages available in ASP.NET?
How can you ensure a permanent cookie?
Explain the concept of event bubbling in ASP.NET?
What role “#&&” plays in a querysting?
How many web config files can be created for an application?
When you use Ajax controls in the ASP.NET application?
How do you sign out from forms authentication?
What is the difference between mechine.config and web.config?