DataColumnCollectionExtensionsRename Method

Renames a column in the source DataColumnCollection to a new column name.

Definition

Namespace: DevCase.Extensions.DataColumnCollectionExtensions
Assembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
[EditorBrowsableAttribute(EditorBrowsableState.Always)]
public static void Rename(
	this DataColumnCollection columnCollection,
	string columnName,
	string newColumnName
)

Parameters

columnCollection  DataColumnCollection
The DataColumnCollection containing the column to rename.
columnName  String
The current name of the column to be renamed.
newColumnName  String
The new name to assign to the column.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type DataColumnCollection. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

Exceptions

ArgumentNullException Thrown when columnCollection, columnName, or newColumnName is null or empty.
ArgumentException Thrown when no column is found with the given column name.

See Also