Saturday 1 June 2019

C# - Convert Decimal? to 0 (zero) if null


Watch this example on YouTube

           

Decimal? z;
z = null;
Decimal zz = Convert.ToDecimal(z);

No comments:

Post a Comment