Hello!
These two declarations(1 and 2) are the same I assume.
1. System.Nullable <intnullable;
2. System.Nullable <intnullable = new System.Nullable <int();
So because these 1 and 2 are the same is no point to use the longer
declaration as 2 it good enough
to use decaration 1.
Do you agree with me?
The declaration of nullable above a value type or a reference type?
//Tony
These two declarations(1 and 2) are the same I assume.
1. System.Nullable <intnullable;
2. System.Nullable <intnullable = new System.Nullable <int();
So because these 1 and 2 are the same is no point to use the longer
declaration as 2 it good enough
to use decaration 1.
Do you agree with me?
The declaration of nullable above a value type or a reference type?
//Tony
Comment