We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Unable to parse the default file that is found in the repository.
The text was updated successfully, but these errors were encountered:
Sorry, something went wrong.
Hi, I got the same exception :( How to solve it ? Thanks
Edit : This is the solution I found, maybe not the best, but it work
/// <summary> /// The collection of ECUs. /// </summary> public IReadOnlyDictionary<string, IDBCECU> ECUs => ecus.Select(d => new KeyValuePair<string, IDBCECU>(d.Key, d.Value)).ToDictionary(k => k.Key, k => k.Value); /// <summary> /// The collection of DBC Messages. /// </summary> public IReadOnlyDictionary<string, IDBCMessage> Messages => messages.Select(d => new KeyValuePair<string, IDBCMessage>(d.Key, d.Value)).ToDictionary(k => k.Key, k => k.Value);
No branches or pull requests
Unable to parse the default file that is found in the repository.
The text was updated successfully, but these errors were encountered: