vote up 0 vote down star
1

The docs for Dictionary.TryGetValue say:

When this method returns, [the value argument] contains the value associated with the specified key, if the key is found; otherwise, the default value for the type of the value parameter. This parameter is passed unin

I need to mimic this in my class. How do I find the default value for type T?


How can this question be modified to make it show up in the search?

Exact duplicate of Returning a default value. (C#)

flag

50% accept rate

closed as exact duplicate by BCS Dec 15 '08 at 23:06

3 Answers

vote up 3 vote down check

You are looking for this:

default(T);

so:

public T Foo<T>(T Bar)
{
   return default(T);
}
link|flag
vote up 6 vote down
default(T);
link|flag
Yep.. introduced along with generics (.NET 2.0, 2005) – Andrei Rinea Dec 15 '08 at 23:02
vote up 1 vote down

Using the default keyword:

T t = default(T)
link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.