VB 10 Content on InfoQ
Latest featured content about VB 10

- Topics
- VB 10,
- .NET Framework 4.0,
- Visual Basic.NET,
- Dynamic Languages,
- .NET Framework,
- .NET Languages,
- .NET,
- Data Access,
- Languages,
- Database,
- Programming,
- DLR,
- Micro-ORM,
- ORM,
- C# 4
Using the new DLR features in VB 10 and C# 4 you can build a configuration-free ORM that works well with legacy stored procedures. Though accessed using normal object-dot-property syntax, all the data objects are built at runtime based solely on the information returned by the database. And this is done with no interfaces to define, classes to implement, or data mapping definitions to write.
News about VB 10
- Topics
- HTML5,
- VB 10,
- Rich Internet Apps,
- ASP.NET WebForms,
- HTML,
- Visual Basic.NET,
- Web Development,
- Markup Languages,
- .NET Framework,
- ASP.NET,
- .NET Languages,
- Visual Studio,
- Languages,
- .NET,
- IDE,
- Microsoft,
- Programming,
- Visual Studio 2010,
- Companies
A General Distribution Release of .NET 4 was published on the 11th of June. This includes numerous fixes and features, many of which were previously published as individual hot fixes. There are also updates to the HTML 5 and portable library support. For your convenience we have sorted the fix list by technology. For the complete list, including file versions, see KB 2468871.
- Topics
- VB 10,
- Visual Basic.NET,
- .NET Languages,
- .NET,
- Tools,
- Agile,
- Programming,
- Mobile,
- Visual Studio 2010
On November 29th, the Visual Basic team announced the Release To Web version of Visual Basic for Windows Phone Developer Tools. This is exciting news for the large number of Visual Basic developers to achieve almost parity with the C# developer community in regards to Windows Phone 7 development of applications.
- Topics
- VB 10,
- Visual Basic.NET,
- .NET Languages,
- Dynamic Languages,
- .NET,
- Languages,
- Programming,
- Language
Visual Basic has always been on the fence between static and dynamic typing. In the beginning VB supported late binding, which is known today as “duck typing”. Through the years it has adopted support for stricter typing, though recently it has swung the other way with full support for the dynamic language runtime.
- Topics
- VB 10,
- Visual Basic.NET,
- .NET Languages,
- .NET,
- Programming,
- Language Design
Visual Basic 10, to be released with .NET 4.0 and Visual Studio 10, is adding support for collection and array initializers. While these are similar to what we already have in C#, there are minor enhancements such as support for extension methods and improved type inference.
- Topics
- VB 10,
- C#,
- Visual Basic.NET,
- .NET Languages,
- .NET,
- Programming,
- Language Design
C# added auto-implemented properties in version 3, but Visual Basic was unable to match them at that time. With the impending release of .NET 4.0, VB has caught up in this area, but with a distinctive twist.
- Topics
- VB 10,
- C#,
- .NET Framework 4.0,
- Visual Basic.NET,
- F#,
- .NET Languages,
- .NET Framework,
- Data Access,
- .NET,
- Database,
- Programming,
- Language Design,
- C# 4
Creating wrapper functions for pre-existing stored procedures is surprisingly difficult in .NET. Stored procedures have certain calling conventions that aren’t generally used in the .NET Framework and many of them are not supported at all. For example, C# doesn’t support optional parameters and neither .NET language supports optional parameters on nullable types.
- Topics
- VB 10,
- Visual Basic.NET,
- Runtimes,
- .NET Framework 4.0,
- C#,
- .NET Languages,
- Java,
- .NET Framework,
- .NET,
- Languages,
- Programming,
- Interop,
- C# 4,
- COM
In .NET 4 types will no longer be restricted to a single assembly. A single type, or part of a type, can be extracted from one assembly and placed into another. Why would you do this? Well first off all, to reduce the cost of including the Office Primary Interopt Assemblies from several megabytes to about 2KB by only including what you actually need.