Visual Studio 10 Beta is Available

Every few years, Microsoft releases an upgrade to its venerable set of development tools: Visual Studio.

Despite being heavily biased towards the technologies that Microsoft is currently pushed, and the advance of other IDEs such as Eclipse, there are many reasons why Visual Studio is still so widely adopted in the industry:

  • It is the standard for Windows Development. If you want to create professional native windows applications it is still difficult to avoid using Visual Studio in a way or another.
  • It is easy to setup. Due to the tight integration with Windows, VS is an easy to use IDE for MS languages. This is disputable, but at least some beginners may feel more comfortable using C# or VB.NET than other languages.

Other than the standard advantages that we all know about, one of the nice things about Visual Studio is that it reflects the needs and advances of software development. For example, VS2003 introduced managed code technologies, as a reaction to the widespread use of Java. Then on VS2005 MS added nice features to the .NET languages, such as generic types, which where pioneered in C++ world.

We also saw the introduction of several technologies to reduce the gap between MS traditional software development approaches to the new world of the web.


New Features

Thus, at every release of Visual Studio, we can see that the engineers of MS try to make the languages of .NET (especially C#) reflect the current trends. And VS2010 is not different, as we see features that are already popular in other languages/environments become part of the offer:

  • Dynamic languages: .NET now support objects created in dynamic languages, such as Python or Ruby, as first class citizens. Now, you can just create a new object with the “dynamic” keyword, and that object will be allowed to dispatch messages at run time — no static information is required by the compiler. Using this feature may allow you to simulate most of the possibilities of dynamic languages such as Python, Ruby, or Objective-C.
  • Simplified parameter passing: most dynamic languages also support passing parameters by keywords. This is possible in Lisp, Python, and in a limited sense in Smalltalk and Objective-C. C# and .NET now support these features that make it easier to call methods with many parameters (although we know that we should avoid this).
  • Functional Programming: the software world is each day using more techniques borrowed from the functional paradigm. Which is good news, because software is becoming more complex, and with the trend of parallel programming and multi-cores becoming the reality, there is no way to continue with imperative programming models. It is great to see that F#, a .NET version of OCaml is now a standard part of Visual Studio 2010.

Conclusion

The new features of VS2010 make it again a compelling development environment. Most people will say that MS is late to the game by releasing many of these features only now. But we have also to agree that it is better late than never. What do you think?


Further Reading

  • The MSDN page for the public beta of VS2010.
  • C# in Depth: an updated book covering the latest version of C# (before the next version). Lots of good tips here.

Similar Posts:

About the Author

Carlos Oliveira holds a PhD in Systems Engineering and Optimization from University of Florida. He works as a software engineer, with more than 10 years of experience in developing high performance, commercial and scientific applications in C++, Java, and Objective-C. His most Recent Book is Practical C++ Financial Programming.

4 Responses to “Visual Studio 10 Beta is Available”

  1. That aren’t new things of visual studio but new things for .Net F# and the DLR are usable with VS 2008 as well.

    By Paco on May 22, 2009

  2. Couple nitpicks:

    Visual Studio.NET (aka 2002 or v7.0) introduced managed code and the .NET Framework, not 2003.

    Visual Studio is just the IDE. You can grab the SDK and use all of the features you mentioned above with notepad and the compilers if you want.

    Visual Studio has a ton of new features in it in this release. Jason Zander, the GM for Visual Studio in the Developer Division has a good run down on what’s new in VS2010: http://blogs.msdn.com/jasonz/archive/2009/05/18/announcing-vs2010-net-framework-4-0-beta-1.aspx

    By Aaron Brethorst on May 22, 2009

  3. Hi Aaron,
    Thanks for checking the details on this. You are right that we don’t need Visual Studio to have these features, we can just grab the SDK and use notepad. However, in the real world most people will only have contact with these technologies through a new version of the IDE.

    Please, keep in touch.

    By coliveira on May 23, 2009

1 Trackback(s)

  1. Jun 7, 2009: Tech Club | Small Business Technology News and Innovations

Post a Comment