vote up 0 vote down star

Hi,

Why does properties[5].PropertyType.GetGenericTypeDefinition() == Type.GetType("System.Nullable`1") equals to true while properties[5].PropertyType.GetGenericTypeDefinition() == Type.GetType("System.Nullable") equals to false?

Properties[5] being a "public Nullable" field.

My question is, What does the `1 after the System.Nullable mean?

Many thanks.

flag

2 Answers

vote up 4 vote down check

The `1 means that the type is a generic type. Since it's possible to have a type called Foo as well as a type called Foo` then there needs to be some internal way for the two types to be differentiated.

Since there's a non-generic System.Nullable type but you're using a generic type, your comparison to GetType("System.Nullable") will always return false.

link|flag
vote up 3 vote down

Nullable`1 is the real name of the class you know of as Nullable<T> in C# (Or Nullable(Of T) in VB.Net).

Nullable is a static class with a number of helper methods for using Nullable<T>.

link|flag

Your Answer

Get an OpenID
or

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