12 lines
372 B
VB.net
12 lines
372 B
VB.net
Imports DigitalData.Modules.Language
|
|
|
|
Public Class Helpers
|
|
Public Shared Function GetRowItem(Of T)(pRow As DataRow, pFieldName As String, Optional pDefaultValue As T = Nothing) As T
|
|
Try
|
|
Return Utils.NotNull(pRow.Item(pFieldName), pDefaultValue)
|
|
Catch ex As Exception
|
|
Return Nothing
|
|
End Try
|
|
End Function
|
|
End Class
|