You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: src/CsvHelper/CsvHelper.csproj
+1-1
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
<!-- Assembly -->
4
4
<AssemblyTitle>CsvHelper</AssemblyTitle>
5
5
<Description>A library for reading and writing CSV files. Extremely fast, flexible, and easy to use. Supports reading and writing of custom class objects.</Description>
Copy file name to clipboardexpand all lines: src/CsvHelper/TypeConversion/TypeConverter.cs
+11-5
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,9 @@
1
+
// Copyright 2009-2024 Josh Close
2
+
// This file is a part of CsvHelper and is dual licensed under MS-PL and Apache 2.0.
3
+
// See LICENSE.txt for details or visit http://www.opensource.org/licenses/ms-pl.html for MS-PL and http://opensource.org/licenses/Apache-2.0 for Apache 2.0.
4
+
// https://github.com/JoshClose/CsvHelper
1
5
usingCsvHelper.Configuration;
6
+
usingSystem;
2
7
3
8
namespaceCsvHelper.TypeConversion
4
9
{
@@ -25,12 +30,13 @@ public abstract class TypeConverter<T> : ITypeConverter
25
30
/// <returns>The string representation of the value.</returns>
// This file is a part of CsvHelper and is dual licensed under MS-PL and Apache 2.0.
3
+
// See LICENSE.txt for details or visit http://www.opensource.org/licenses/ms-pl.html for MS-PL and http://opensource.org/licenses/Apache-2.0 for Apache 2.0.
0 commit comments