Serialize a row into a text file
Namespace: ScopeRuntimeAssembly: ScopeRuntime (in ScopeRuntime.exe) Version: 1.0.0.0 (10.2.2.0)
Syntax
C# |
---|
public void Serialize(
StreamWriter writer,
string delimiter,
bool doubleToFloat,
bool escape
) |
Visual Basic |
---|
Public Sub Serialize ( _
writer As StreamWriter, _
delimiter As String, _
doubleToFloat As Boolean, _
escape As Boolean _
) |
Visual C++ |
---|
public:
void Serialize(
StreamWriter^ writer,
String^ delimiter,
bool doubleToFloat,
bool escape
) |
Parameters
- writer
- Type: StreamWriter
StreamWriter to write row to
- delimiter
- Type: String
delimiter for separating columns
- doubleToFloat
- Type: Boolean
Should all double values be converted to floats?
- escape
- Type: Boolean
If true, escape # and null as well as \r \n and the delimiter
See Also