Skip to content

Instantly share code, notes, and snippets.

@Boztown
Created May 9, 2012 23:13
Show Gist options
  • Save Boztown/2649625 to your computer and use it in GitHub Desktop.
Save Boztown/2649625 to your computer and use it in GitHub Desktop.
C#: SqlDataReader NullCheck
TourHostCompanyProv.Text = NullCheck(reader, "fldTourHostCompanyProv");
public string NullCheck(SqlDataReader reader, string key)
{
return (reader[key] == DBNull.Value) ? String.Empty : (string)reader[key];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment