Check Null double for IDataRecord

Niladri.Biswas
Posted by Niladri.Biswas under C# category on | Points: 40 | Views : 1350
public static double CheckNullDouble(this IDataRecord reader, int ordinal)
{
if (reader == null) throw new ArgumentNullException("reader");
return reader.IsDBNull(ordinal) ? 0 : reader.GetDouble(ordinal);
}

Comments or Responses

Login to post response