我创建了一个数据表并向其中添加了许多列。
当数据表为空时,我想为特定列分配一个值。
就像在数据表中找到列名并为其赋值......有可能吗?谢谢
dt_FAQ.Columns.Add("FQ_Question_1", typeof(string));
dt_FAQ.Columns.Add("FQ_Answer_1", typeof(string));
dt_FAQ.Columns.Add("FQ_Question_2", typeof(string));
dt_FAQ.Columns.Add("FQ_Answer_2", typeof(string));
dt_FAQ.Columns.Add("FQ_Question_3", typeof(string));
dt_FAQ.Columns.Add("FQ_Answer_3", typeof(string));
dt_FAQ.Columns.Add("FQ_Question_4", typeof(string));
dt_FAQ.Columns.Add("FQ_Answer_4", typeof(string));
dt_FAQ.Columns.Add("FQ_Question_5", typeof(string));
dt_FAQ.Columns.Add("FQ_Answer_5", typeof(string));
有一种情况,我只会得到必须分配给上述数据表中“FQ_Answer_1”列的值。在这种情况下,我想单独为该列分配值并将空字符串“”传递给其他列。可能的 ?