CsvOptsExtensionSet Method

Sets all flags set in flags in value.

Definition

Namespace: FolkerKinzel.CsvTools
Assembly: FolkerKinzel.CsvTools (in FolkerKinzel.CsvTools.dll) Version: 2.0.1+2345335399184346d9b2cc992ed5c814406052c1
C#
public static CsvOpts Set(
	this CsvOpts value,
	CsvOpts flags
)

Parameters

value  CsvOpts
The CsvOpts Value to which the flags set in flags are set.
flags  CsvOpts
A single CsvOpts value or a combination of several CsvOpts values.

Return Value

CsvOpts
A CsvOpts value on which all in value and flags set flags are set.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type CsvOpts. 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).

See Also