Answers for "c# getdecimal null"

C#
0

c# getdecimal null

decimal? d= myRdr["myValue"] == DBNull.Value ? null : (decimal?)myRdr["myValue"];
Posted by: Guest on December-09-2020

C# Answers by Framework

Browse Popular Code Answers by Language