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
hi,
in CsvReader.cs, in the function private string ReadField(int field, bool initializing, bool discardValue)
this line throw new ArgumentOutOfRangeException(nameof(field), field, string.Format(CultureInfo.InvariantCulture, ExceptionMessage.FieldIndexOutOfRange, field)); throws an error
Method not found: 'System.String System.String.Format(System.IFormatProvider, System.String, System.Object)
According to this, it is an issue of the string.Format overload depending on the target and installed framework version. Is there a wa to fix this in the project?
The text was updated successfully, but these errors were encountered:
hi,
in CsvReader.cs, in the function
private string ReadField(int field, bool initializing, bool discardValue)
this line
throw new ArgumentOutOfRangeException(nameof(field), field, string.Format(CultureInfo.InvariantCulture, ExceptionMessage.FieldIndexOutOfRange, field));
throws an errorAccording to this, it is an issue of the string.Format overload depending on the target and installed framework version. Is there a wa to fix this in the project?
The text was updated successfully, but these errors were encountered: