Check if DataRow exists by column name in c#? [duplicate] December 24, 2022 by Tarik You should try if (row.Table.Columns.Contains("US_OTHERFRIEND")) I don’t believe that row has a columns property itself.