Tiago Conceição

Results 32 issues of Tiago Conceição

I have some situations where the format have uint's with 3 bytes, currently is it possible to define an **uint** and deserialize/serialize in 3 byte order? Making stream only to...

bug

I'm in the need of having 24 bit uint, since i can't find a way with current `FieldBitLength(24)` would be super usefull to have `SerializedType.Int3` and `SerializedType.UInt3` as i have...

Sometimes i can have unknown padding lenght that i need to skip. I don't find a attribute to by pass this so my proposal: ```C# [SerializeWhile((byte)0)] public List Padding {...

enhancement

I'm having a problem where i set a field to be **6** and on file is written with **5** Here's the defenition: ```C# /// /// Gets the size of the...

I often deal with jumps on structures and need to create a new class rather than one and seek in between of serializations, sometimes is usefull to have the field...

```C# public class LayerDefinition { public const string SectionMark = "LAYERDEF"; [FieldOrder(0)] public Section Section { get; set; } [FieldOrder(1)] public uint LayersCount { get; set; } [FieldOrder(2)] [FieldCount(nameof(LayersCount))] public...

I'm getting a very stange behaviour where my serialize is put twice the content of the class into file. I search and try some alternatives but without success. Sometimes it...

Example: ```C# new Option(new[] {"-v", "--version"}, "Sets the file format version"), new Option(new[] {"-v", "--version"}, "Sets the file format version"), ``` Produces: ``` Cannot parse argument '1' for option '-v'...

**Describe the bug** Program crash when pick a file with OpenFileDialog. I can't replicate this on my machine and never experienced this, but multiple users have reported this not-so-often bug....

bug

**Describe the bug** User reported bug, full description here: https://github.com/sn4k3/UVtools/issues/515 Happens after minimize or change task. ``` System.InvalidOperationException: Invalid Arrange rectangle. at Avalonia.Layout.Layoutable.Arrange(Rect rect) in /_/src/Avalonia.Layout/Layoutable.cs:line 396 at Avalonia.Controls.Canvas.ArrangeOverride(Size finalSize)...

bug
help-wanted