mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-02-16 13:15:07 +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
|
/// Iterate through all lines in this Csv file
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <returns>An array of all data columns in the line</returns>
|
/// <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();
|
return Lines().GetEnumerator();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,8 +3,6 @@
|
|||||||
* License: http://www.apache.org/licenses/LICENSE-2.0
|
* License: http://www.apache.org/licenses/LICENSE-2.0
|
||||||
* Home page: https://github.com/tspence/csharp-csv-reader
|
* Home page: https://github.com/tspence/csharp-csv-reader
|
||||||
*/
|
*/
|
||||||
|
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace ICD.Common.Utils.Csv
|
namespace ICD.Common.Utils.Csv
|
||||||
|
|||||||
@@ -14,10 +14,10 @@
|
|||||||
//
|
//
|
||||||
// =============================================================================
|
// =============================================================================
|
||||||
|
|
||||||
|
// ReSharper disable once RedundantUsingDirective
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
// ReSharper disable once CheckNamespace
|
// ReSharper disable once CheckNamespace
|
||||||
|
|
||||||
namespace System.Reflection
|
namespace System.Reflection
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|||||||
Reference in New Issue
Block a user