Results 112 comments of Yuyi Wang

Could the color and other styles be specified by argument? For example, ``` rust bunt::println!("{$*}error:{/$}", Color::Red, ty); ``` In that case I could calculate the color at runtime.

OK, if it doesn't support i686, a `compile_error!("unsupported platform");` would be nice.

Are there someone still working on this issue?

有红茶啊。 只有红茶可以吗?

The function I gave is only an example. Actually, I tried to write a `Pointer(Of T)` structure to wrap a C# pointer for VB. Now I write it without `unmanaged`,...

Before this issue being solved, I suggest switching to C# now, though it is hard to accept that VB.NET is abandoned by M$. I wish I'm wrong...

Hey @fitdev , I'm happy to see that there's still someone would like this feature after 3 years. But sadly I have to admit that VB has been abandoned by...

If you write `Either(Of T1, T2)` with two `Operator CType`: ``` VB Public Structure Either(Of T1, T2) Public ReadOnly Property Item1 As T1 Public ReadOnly Property Item2 As T2 Public...

This code won't cause error: ``` VB Module Program Sub Main(args As String()) Dim arr As Integer() = {1, 2, 3, 4, 5} Dim span = arr.AsSpan() Console.WriteLine(span(1)) End Sub...

@Nukepayload2 Surely it should, though your code will cause a runtime exception: `System.InvalidProgramException:“Cannot create boxed ByRef-like values.”` It may be thrown by JIT. And I find that this code will...