• Top Posts

    How to use nullable types in .Net?


    • Value types can take either their normal values or a null value. Such types are called nullable types.
    • ex:

                     Int? someID = null;
                     If(someID.HasVAlue)
                          {
                          }

    No comments

    Post Top Ad

    ad728

    Post Bottom Ad

    ad728