Nukepayload2

Results 34 comments of Nukepayload2

这个 PR 没动代码。文档没问题的话应该要通过。

如果要演算,那得搞清楚所有式神的 AI 行为。我曾经试过,后来因为 AI 行为迟迟定不下来就一直搁置了。毕竟我的号的式神种类非常有限。

@jrmoreno1 Your suggestion is more sensible. I'll edit the code to your version.

I'm trying to write a `MyWpfExtension.vb` generator for .NET Core and .NET 5 projects. https://github.com/Nukepayload2/MyWpfExtensionGenerator But I noticed that the generated code can't be used by early binding code in...

> Future features of .NET Core that require language changes may not be supported in Visual Basic. What's the meaning of "Future features" here? Will existing .NET Core 3.1 features,...

I have a blittable `Structure` and a size in VB that I want to `stackalloc` a fixed buffer in c# and get the buffer as `Span(Of T)`. So that I...

They have confirmed that this behavior is by design. I don't understand why they are not intend to let stack-only structures consumable in VB when c# is able to define...

@Berrysoft the VB compiler should verify that all `ref struct`s are not stored on the heap, rather than simply ignore the `ObsoleteAttribute`. The following code should produce compile-time error, but...

The `Enum` constraint is useful in IL embedding scenario. We can use the IL instruction `conv.u8` to convert `Enum` to `ULong`, because the longest `Enum` has 64 bits. I have...

Yes. But luckily those incorrect results are still useful in some bitwise algorithms, such as `Enum.HasFlag`.