GetIntFromDataRow Method
- Last UpdatedNov 06, 2025
- 1 minute read
Convert and return the specified field of the supplied System.Data.DataRow as an integer If the value is a DB Null or the column does not exist or it doesn't convert to the specified type then return the specified default value.
| Overload | Description |
|---|---|
| GetIntFromDataRow(DataRow,String,Int32) | Convert and return the specified field of the supplied System.Data.DataRow as an integer If the value is a DB Null or the column does not exist or it doesn't convert to the specified type then return the specified default value. |
| GetIntFromDataRow(DataRowView,String,Int32) | Convert and return the specified field of the supplied System.Data.DataRowView as an integer If the value is a DB Null or the column does not exist or it doesn't convert to the specified type then return the specified default value. |
| GetIntFromDataRow(DataRow,String,Nullable<Int32>) | Convert and return the specified field of the supplied System.Data.DataRow as an integer If the value is a DB Null or the column does not exist or it doesn't convert to the specified type then return the specified default value. |
| GetIntFromDataRow(DataRowView,String,Nullable<Int32>) | Convert and return the specified field of the supplied System.Data.DataRowView as an integer If the value is a DB Null or the column does not exist or it doesn't convert to the specified type then return the specified default value. |