Showing results for 2014 - Visual Basic Blog

Dec 11, 2014
0
0

Better together: Visual Basic 14 and the Visual Studio 2015 Debugger

Anthony D. Green [MSFT]
Anthony D. Green [MSFT]

"Lambdas! Lambdas! Lambdas! Lambdas! ..." If you hadn't heard, Visual Studio 2015 will support the use of lambda expressions in the debugger windows. We're all very excited to deliver on this longstanding TOP customer request. When LINQ was introduced in 2008 it was a game changer for the way .NET developers think about and code with data. So, to ...

Dec 9, 2014
0
0

New Language Features in Visual Basic 14

Anthony D. Green [MSFT]
Anthony D. Green [MSFT]

"Visual Basic 14" is the version of Visual Basic that will ship with Visual Studio 2015. In this blog post I'll talk specifically about the VB language improvements in this release. (Separately, there are a whole host of IDE and project-system improvements as well). There are two overall themes to the language improvements: (1) Make common coding ...

Nov 26, 2014
0
0

New Language Features in Visual Basic 14 (animated)

Anthony D. Green [MSFT]
Anthony D. Green [MSFT]

"Visual Basic 14" is the version of Visual Basic that will ship with Visual Studio 2015. In this blog post I'll talk specifically about the VB language improvements in this release. (Separately, there are a whole host of IDE and project-system improvements as well). There are two overall themes to the language improvements: (1) Make common coding ...

Nov 19, 2014
0
0

Post-Release Goodies

Anthony D. Green [MSFT]
Anthony D. Green [MSFT]

The Rosetta lander Philae wasn't the only thing in space last week. Our launch of Visual Studio 2015 Preview and our announcement to open source the full .NET server stack were out of this world. After all, it’s not every day that you can say your work trended higher than Kim Kardashian on Twitter. After an overwhelmingly positive reception...

Nov 12, 2014
0
0

Short Videos Demonstrating What’s New in Visual Studio 2015 Preview for C#, VB, and F#

Anthony D. Green [MSFT]
Anthony D. Green [MSFT]

Our team has put together a set of short videos to highlight some of our work in Visual Studio 2015 Preview. Check them out to learn more about what’s new in C# and VB, how F# can be good for enterprise, and how to improve your code quality with “analyzers”. To learn more about our team’s work in Visual Studio 2015 Preview, ...

Nov 12, 2014
0
0

Introducing the Visual Studio 2015 Preview for VB and C#

Anthony D. Green [MSFT]
Anthony D. Green [MSFT]

Download Visual Studio 2015 Preview and review the release notes. Over the past several years, our team has been hard at work re-implementing the full language stacks for Visual Basic and C#. While this was a long investment, we knew that an improved stack with a cleaner architecture would allow our team to work faster, empower others to build "...

Jun 24, 2014
0
0

.NET Compiler Platform ("Roslyn") for the Rest of Us

Beth Massi
Beth Massi

WOW! It’s been a while -- almost exactly 4 years since yours truly, Beth Massi, last posted on the VB Team blog (although it’s cool to see I’m still in the tag cloud ;-)).  I’m honored to be a special guest post today. If you’ve been reading this team blog I’m sure you know by now that the .NET Compiler Platform (code named "...

Jun 21, 2014
0
0

VB Universal Windows App: downloads

VBTeam
VBTeam

Here are download links for the "VB Universal Windows App" series:   App1.vb This is the minimal VB universal app that we'll build in this blog series.   Breakout Universal This is a complete game, based upon all the principles that were covered in the blog series. &...

Jun 20, 2014
0
0

VB Universal Windows App Part 5: calling into platform-specific APIs from PCL

VBTeam
VBTeam

This is Part 5 of the "VB Universal Windows App" series: So far we've been able to re-use all our code and XAML by placing them in the PCL. Actually, PCLs can only ever contain calls to APIs that are common to the platforms they target. This generally isn't a problem, because most APIs on Windows also exist on Windows Phone, and ...

Jun 15, 2014
0
0

VB Universal Windows App Part 4: using SharpDX for sound effects

VBTeam
VBTeam

This is Part 4 of the "VB Universal Windows App" series: So far we've built a solid app, sharing as much code and XAML as possible by placing it in our PCL. For today's post we'll continue the process, adding game-quality sound effects to our app. SharpDX is the best way to do this. Please bear with me. This is a long technical...