Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Some file contains negative time and then causes Exception #77

Open
270676504 opened this issue May 17, 2024 · 1 comment
Open

Some file contains negative time and then causes Exception #77

270676504 opened this issue May 17, 2024 · 1 comment

Comments

@270676504
Copy link

The Exception is:"The added or subtracted value results in an un-representable DateTime. Arg_ParamName_Name"
Simply adding try-catch can fix this problem.
public NSDate(ReadOnlySpan bytes)
{
try
{
Date = EPOCH.AddSeconds(BinaryPropertyListParser.ParseDouble(bytes));
}
catch (Exception)
{
Date = EPOCH;
}
}

@270676504
Copy link
Author

  public NSDate(ReadOnlySpan<byte> bytes)
  {
      //dates are 8 byte big-endian double, seconds since the epoch
      try
      {
          Date = EPOCH.AddSeconds(BinaryPropertyListParser.ParseDouble(bytes));

      }
      catch
      {
          Date = EPOCH;
      }
  }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant