.NET & C# ยท C#
When should you use nullable types in C#?
Use nullable types when absence is a valid business state; otherwise model the member as non-null and initialize or validate it appropriately.
Use nullable types when absence is a valid business state; otherwise model the member as non-null and initialize or validate it appropriately.