| FileWriteLine Method (FileStream, String) |
Writes a line of text to the specified file stream.
Namespace:
Galactic.FileSystem
Assembly:
Galactic.FileSystem (in Galactic.FileSystem.dll) Version: 1.3.0.499 (1.3.0.499)
Syntax public static bool WriteLine(
FileStream stream,
string line
)
Public Shared Function WriteLine (
stream As FileStream,
line As String
) As Boolean
public:
static bool WriteLine(
FileStream^ stream,
String^ line
)
static member WriteLine :
stream : FileStream *
line : string -> bool
Parameters
- stream
- Type: System.IOFileStream
The file stream to write to. - line
- Type: SystemString
The line of text to write.
Return Value
Type:
BooleanTrue if the line was written, false otherwise.
See Also