mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-01-11 19:44:55 +00:00
refactor: Tidying, resolving warnings
This commit is contained in:
@@ -62,7 +62,7 @@ namespace ICD.Common.Utils.Csv
|
||||
/// Iterate through all lines in this Csv file
|
||||
/// </summary>
|
||||
/// <returns>An array of all data columns in the line</returns>
|
||||
IEnumerator<string[]> System.Collections.Generic.IEnumerable<string[]>.GetEnumerator()
|
||||
IEnumerator<string[]> IEnumerable<string[]>.GetEnumerator()
|
||||
{
|
||||
return Lines().GetEnumerator();
|
||||
}
|
||||
|
||||
@@ -3,8 +3,6 @@
|
||||
* License: http://www.apache.org/licenses/LICENSE-2.0
|
||||
* Home page: https://github.com/tspence/csharp-csv-reader
|
||||
*/
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace ICD.Common.Utils.Csv
|
||||
|
||||
@@ -14,10 +14,10 @@
|
||||
//
|
||||
// =============================================================================
|
||||
|
||||
// ReSharper disable once RedundantUsingDirective
|
||||
using System;
|
||||
|
||||
// ReSharper disable once CheckNamespace
|
||||
|
||||
namespace System.Reflection
|
||||
{
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user