The text of this article is not in this database — only its details are. Read it on the old site: Data Column in ADO.NET
2 Comments
Join the conversation! Your thoughts help the community grow.
Sign in to leave a comment.
The text of this article is not in this database — only its details are. Read it on the old site: Data Column in ADO.NET
Join the conversation! Your thoughts help the community grow.
Sign in to leave a comment.
Roy LathamPosted Nov 25, 2015, 5:57 AM
This is the format for creating a DataColumn with the column name and its type:You have: public DataColumn(string, Type, string); Where string is the column name and type is the column data type. This is the format for creating a DataColumn with the column name, its type, and expression: public DataColumn (string, Type); Where the first string is the column name, Type is the data type, and the second string is an expression.
Roy LathamPosted Nov 25, 2015, 5:56 AM
You have: