takeisit
takeisit
Hi, the following code renders a list of numbers. ```rust #[component] fn ForTest(cx: Scope) -> impl IntoView { let (list, set_list) = create_signal(cx, vec![1]); view!{cx, "update to 0 1 2"...
It works: ```csharp using UnitGenerator; [UnitOf] partial struct Ok; ``` But, It doesn't work: ```csharp [UnitGenerator.UnitOf] partial struct Ng; ``` .NET8 UnitGenerator 1.6.2
UnitOf with ParseMethod option does not accept the type declared in other assemblies. A solution has 2 projects: - OtherLib (.NET8 ) ```xml all runtime; build; native; contentfiles; analyzers; buildtransitive...
.NET8 UnitGenerator 1.6.2 Hi, ```csharp public readonly struct MyParsable : IParsable { public static MyParsable Parse(string s) => throw new NotImplementedException(); public static bool TryParse([NotNullWhen(true)] string? s, [MaybeNullWhen(false)] out MyParsable...