-
Notifications
You must be signed in to change notification settings - Fork 0
Exporter Public Methods
Haruki Takahashi edited this page May 30, 2023
·
1 revision
hasHeader
has the following effects for all three methods below:
HasHeader | Behavior |
---|---|
True | Headers are included in the enumerable. |
False | Headers are skipped. |
public static IEnumerable<string> ToIEnumerable(ObservableTable<string> table, bool hasHeader)
public static string ToCsvString(ObservableTable<string> table, bool hasHeader = true)
This method returns a multiline string delimited by Environment.ReadLine
.
public static void ToFile(string path, ObservableTable<string> table, bool hasHeader = true)