-> string aa = "2+3";
{
DataTable table = new DataTable ();
// Create the first column.
DataColumn priceColumn = new DataColumn();
priceColumn.DataType = System.Type.GetType("System.Decimal");
priceColumn.ColumnName = "price";
priceColumn.DefaultValue = 50;
// Create the second, calculated, column.
DataColumn taxColumn = new DataColumn();
taxColumn.DataType = System.Type.GetType("System.Decimal");
taxColumn.ColumnName = "tax";
taxColumn.Expression = "price * 0.0862";
// Create third column.
DataColumn totalColumn = new DataColumn();
totalColumn.DataType = System.Type.GetType("System.Decimal");
totalColumn.ColumnName = "total";
totalColumn.Expression = "price + tax";
// Add columns to DataTable.
table.Columns.Add(priceColumn);
table.Columns.Add(taxColumn);
table.Columns.Add(totalColumn);
table.Rows.Add(row);
DataView view = new DataView(table);
dataGrid1.DataSource = view;
}
'Language > C#.NET' 카테고리의 다른 글
System.Windows.Forms.Timer vs System.Timers.Timer vs System.Threading.Timer (0) | 2012.04.24 |
---|---|
Microsoft Visual Studio (비주얼스트디오) 단축키 모음 (0) | 2012.04.24 |
Xml 파일을 .Net Class로 구성하는 방법 (0) | 2012.04.24 |
ASP.NET 서버 모델의 성능에 대한 고찰 (0) | 2012.04.24 |
Machine Key (0) | 2012.04.24 |