vblang icon indicating copy to clipboard operation
vblang copied to clipboard

The home for design of the Visual Basic .NET programming language and runtime library.

Results 110 vblang issues
Sort by recently updated
recently updated
newest added

Related to https://github.com/dotnet/csharplang/pull/3788

The guid is for the hash algorithm, not the file. see : https://github.com/dotnet/roslyn/blob/master/src/Compilers/Core/Portable/PEWriter/DebugSourceInfo.cs https://github.com/dotnet/roslyn/blob/master/src/Compilers/VisualBasic/Test/Emit/PDB/ChecksumTests.vb https://github.com/dotnet/docs/pull/5059

Potential solution for #228 Proposal for Flags Enum Operators.

Initial work on the proposal TypeOf Many. **Edit** [See Issue / Proposal](https://github.com/dotnet/vblang/issues/23)

cla-already-signed

While I do my research in .net 5 on meta data of class type, I encounter how ref struct create in C# and I remember @VBAndCs work around on it...

We use three apostrophes (''') to document functions.and subs along with any parameters and these appear in intellisense! It would be a nice productivity thing to be able to.describe variables...

We are considering a change to the behavior and spec for operands to null coalescing operators. The relevant part of the spec is [here](https://github.com/dotnet/vblang/blob/master/spec/expressions.md#conditional-expressions) and the effect would be allowing...

Approved-in-Principle

# Pointer One of syntax I don't think it going to be apply to VB.net by MS is `pointer` , I half agree and half disagree with this decision because...

Today, I wrote this in a [VB.NET ASP.NET Core app](https://github.com/VBAndCs/Vazor/tree/master/WebApp1): ``` services.AddControllersWithViews(). ' Enable Vazor AddRazorRuntimeCompilation( Sub(options) options.FileProviders.Add( New Vazor.VazorViewProvider()) ) ``` but I got syntax error, because the comment...