mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-04-12 03:57:32 +00:00
refactor: Tidying, resolving warnings
This commit is contained in:
parent
79db70211f
commit
f328598f63
3 changed files with 2 additions and 4 deletions
|
|
@ -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>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue