Funkest

Results 8 comments of Funkest

``` Guid id = new Guid("018ced5c-1f3d-da5f-8349-8acba12a5e3f"); Ulid idUlid = new Ulid(id); if ((Guid)idUlid == id && idUlid.ToGuid() == id) { Console.WriteLine("works"); } else throw new Exception(); ``` This code always...

Read-only `BindableReactiveProperty` class - `R3.BindableReactiveProperty` binds observable property but doesn't have read-only option. - `R3.ReadOnlyReactiveProperty` doesn't bind observable property. - I wrote so many lines with `Reactive.Bindings.ReadOnlyReactivePropertySlim` in WPF xaml...

It checked working on xaml in WPF. For me frankly, I still hope generic one. I use (ReadOnly)ReactivePropertySlim seamless between domain and UI layers. On domain layer, If it were...

@runceel fixed a 11th line, sorry. (old shows `IBindableReactiveProperty`)

#### Additional Unexpected Behavior - In the above example, adding `[assembly: MessagePackKnownFormatter(typeof(FooMessagePackFormatter))]` resolves the problem. - However, adding `[assembly: MessagePackKnownFormatter(typeof(FooMessagePackFormatter))]` does not change anything. - The latter behavior seems to...

- The implementation was brought closer to GetDualAsyncEnumerable. The previous implementation was fatally bad in practice because it couldn't retrieve stderr until stdout was complete, so it was changed. -...