LineTerminator Enum
Specifies a kind of line terminator.
public enum LineTerminator
Fields
| Name | Description |
|---|---|
| CR | A single carriage return (CR) character with ASCII value 13, or |
| CRLF | A carriage return (CR) character followed by a newline (LF) character, or |
| CarriageReturn | The previous enumeration value name for a CR. Switch usage to the shorter CR value name instead. |
| CarriageReturnNewline | The previous enumeration value name for a CRLF. Switch usage to the shorter CRLF value name instead. |
| LF | A single newline (LF) character with ASCII value 10, or |
| Newline | The previous enumeration value name for a LF. Switch usage to the shorter LF value name instead. |