CSVSettings.CloneWithNewDelimiter Method

/// Clone the existing settings, but with a different field delimiter. /// /// Used for parsing of "sep=" lines so that the original object is immutable. ///
Public Function CloneWithNewDelimiter( _ 
ByVal newDelimiter As Char
) As CSVSettings
This language is not supported or no code example is available.
public CSVSettings CloneWithNewDelimiter( 
char newDelimiter 
)
This language is not supported or no code example is available.
public:  
CSVSettings^ CloneWithNewDelimiter( 
char newDelimiter 
)
This language is not supported or no code example is available.
public function CloneWithNewDelimiter( 
newDelimiter : char 
) : CSVSettings;
This language is not supported or no code example is available.

Parameters

newDelimiter
char

The new delimiter for the cloned settings

Return Value

CSVSettings

The newly cloned settings with the updated delimiter

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8

In this article

Definition