Erik Edespong
Erik Edespong
By default, the error codes in the Output Window are clickable and gets you to a Bing search that currently gives no relevant hits. It would be good if we...
When using a custom `struct` and you do not make it implement `IEquatable` there are a number of situations where you will end up with heap allocations where you might...
Issue #8 discusses whether we can look at the actual IL or not to determine heap allocations. The conclusion is that it would be too expensive. I think, however, that...
According to https://github.com/serilog/serilog-settings-configuration/issues/293#issuecomment-1002972481 the 'New expression package [uses](https://github.com/serilog/serilog-expressions#properties) shorter syntax (CLEF) for expressions.' as such, the WriteTo:ConditionalSink sink in [sample application](https://github.com/serilog/serilog-settings-configuration/blob/dev/sample/Sample/appsettings.json#L49) does not work as expected. `@Level` should be `@l`...
**Describe the bug** Trying to serialize a DICOM header that contains `DicomItem`s that are not `DicomElement`. This results in exceptions. **To Reproduce** Minimal program: ```using System.Text.Json; using FellowOakDicom; using FellowOakDicom.Serialization;...