mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-13 09:43:00 +00:00
19 lines
545 B
C#
19 lines
545 B
C#
namespace SabreTools.Metadata.DatFiles.Formats
|
|
{
|
|
/// <summary>
|
|
/// Represents a comma-separated value file
|
|
/// </summary>
|
|
public sealed class CommaSeparatedValue : SeparatedValue
|
|
{
|
|
/// <summary>
|
|
/// Constructor designed for casting a base DatFile
|
|
/// </summary>
|
|
/// <param name="datFile">Parent DatFile to copy from</param>
|
|
public CommaSeparatedValue(DatFile? datFile) : base(datFile)
|
|
{
|
|
_delim = ',';
|
|
Header.DatFormat = DatFormat.CSV;
|
|
}
|
|
}
|
|
}
|