public enum ENUM_AccDebitCredit
{
accDR = 1,
accCR = 2
}
我在一个类中声明为public ENUM_AccDebitCreditDebitCredit { get; set; }
在我的代码中,我尝试enum
从数据表中填充它,如下所示
DebitCredit = (ENUM_TransactionType)Enum.Parse(typeof(ENUM_TransactionType), rsACC_AccountingRules.Tables[0].Rows[0]["DR"].ToString()) & (ENUM_TransactionType)Enum.Parse(typeof(ENUM_TransactionType), rsACC_AccountingRules.Tables[0].Rows[0]["CR"].ToString());
我想存储多个值DebitCredit
,我该怎么做
我的数据表如下
DataTable table = new DataTable();
table.Columns.Add("Dosage", typeof(int));
table.Columns.Add("DR", typeof(string));
table.Columns.Add("CR", typeof(string));
table.Rows.Add(25, "1","2"); // enum values