Johann Dirry
Johann Dirry
Porting the source code of AutoGen to .NET/TypeScript/Java/Rust/etc. ist exactly the kind of work, which a system like AutoGen should be able to do.
> The use of `is not null` instead of `!= null` Those have a different meaning: - `is not null` checks if the variable is null - `!= null` uses...
It should also be possible to follow a `params` variable with an `CancellationToken`: ```csharp public Task FooAsync(params int[] values, CancellationToken ct) ```
> @MovGP0 - What happens if I want to pass in a `params List`? I don't see the use case. Usually you would create a combined CancellationTokenSource and return a...
> ```C# > public Task FooAsync(params CancellationToken[] values, CancellationToken ct)``` Yes, that would be possible. It's just a collection that is passed to the method. So the syntax is fine....
Working on it in [issue-8-MathML_Export](kashifimran/math-editor/tree/issue-8-MathML_Export)
I made some improvements on that value converter selector, such that it also works with non-GUID ids: ```csharp using Microsoft.EntityFrameworkCore.Storage.ValueConversion; using StronglyTypedIds; using System.Collections.Concurrent; namespace StronglyTypedId; public sealed class StronglyTypedIdValueConverterSelector:...
yes. I was using the version 0.8. strangely, I was able to compile one project, while a colleague of mine got the error. so I made a test project and...
I was able to replicate the error on VS 2012/.NET 4.0 and 2013/.NET 4.5; haven't tried 2015/.NET4.6 yet. Might provide an example solution later today.
The interesting thing is, that when I have a successful build and then change the code like the one above, it works. After cleaning or rebuilding it causes the above...