Feeds:
Posts
Comments

Posts Tagged ‘nullable types’

Nullable Types

There is a basic difference in value types & reference types in C# and other popular object oriented programming languages like Java and C++. Reference types can point to nothing or null but value types can not! For example, if in a class I declare a reference type and a value type like
    class [...]

Read Full Post »