For Developers, Microsoft Has More in Store than Ever Before, Part 2 | CodeGuru

For Developers, Microsoft Has More in Store than Ever Before, Part 2

As a follow-up to my previous article on the PDC this year, I present a few more technologies that you are sure to hear about. LinQ: A Sneak Peek at C# 3.0 The .NET Language Integrated Query (LinQ) is by far the most compelling technology to be added to C#, in my opinion. Without going […]

Written By
CodeGuru Staff
CodeGuru Staff
Oct 10, 2005
3 minute read
CodeGuru content and product recommendations are editorially independent. We may make money when you click on links to our partners. Learn More

As a follow-up to my previous article on the PDC this year, I present a few more technologies that you are sure to hear about.

LinQ: A Sneak Peek at C# 3.0

The .NET Language Integrated Query (LinQ) is by far the most compelling technology to be added to C#, in my opinion. Without going into a lot of detail, I will explain what it is and how and when it will be implemented. I look at LinQ and its relationship to objects as what WMI is to events. It is a query language that enables you to search your objects and their attributes and methods in a standard declarative manner. The following is a short sample:

using System;
using System.Query;
using System.Collections.Generic;

class app {
  static void Main() {
    string[] names = { "Developer.com", "Gamelan.com", "Jars",
                       "CodeGuru.com", "msdn.Microsoft.com" };

    IEnumerable<string> expr = from s in names
                               where s.Length &rt; 11
                               orderby s
                               select s.ToUpper();

    foreach (string item in expr)
      Console.WriteLine(item);
  }
}

The above code would produce the following result:

CodeGuru.com
Developer.com
msdn.Microsoft.com

For a meta-data guy like me, this has great potential to allow dynamic application creation and execution.

Now, if you join this data to a relational database and WMI or event data, you can start to see the potential. Don Box and Anders Hejlsberg wrote an MSDN article that explains the details of LinQ. Read it, learn it, live it. Keep in mind that LinQ is part of C# 3.0 and is not supported at this point. (I will write a very detailed article on LinQ for CodeGuru at a later date.)

To be clear, LinQ is indeed C#, but also so much more. As Microsoft Group Manager Alan Griver pointed out to me, it is a cross-team effort among the C#, VB, and SQL teams. “This is a platform technology, not tied to any given language,” says Alan, which completely makes sense. Why should we C# guys have all the goodies? I think that makes this an even more compelling technology for everyone to learn.

Office 12: New UI and Tighter Integration

I have to admit that I am one of the individuals who takes Office for granted. I have been using it for so long that I don’t think too much about it. I would not consider myself a power-user from an end-user perspective, but I do extend it with macros and write programs for it using the Visual Studio tools for Office (VSTO). So, the new UI for Office 12 was a bit of a surprise to me. I always find myself adjusting toolbars and trying to get my environment set up correctly, but from the looks of it, things should be more intuitive and easier to use in Office 12. From a development standpoint, with the introduction of the CLR with SQL Server 2005, Office development should be substantially easier and more efficient.

Advertisement

Expression: New UI Presentation Tools for Graphics and Web Designers

As a Flash designer/developer wannabe, I am very much looking forward to Expression, a suite of three tools all targeted at the UI or presentation designer:

  • Acrylic Graphic Designer incorporates vector and image editing as well as dynamic special effects and workflow in a single environment.
  • The Sparkle Interactive Designer enables you to create audio, video, and static designs into a single user experience, such as a movie or 3D interactive animation.
  • The Quartz Web Designer allows you to take the output from the other tools and create a Web design that is controlled by CSS and XML.

A beta of this tool is available on MSDN. I am interested to see the integration that this toolset has with Visual Studio.

So Many Tools…

Well, those were my highlights of the PDC 2005 this year. If you were not able to make it to the event, you can still see most of the content online at the PDC Web site on MSDN.

Microsoft and other software companies are delivering so many new tools and technologies these days that it is a challenge to keep track of all the products. The PDC and other conferences are a great way to stay in the loop and get a first-hand look at these products before they hit the shelves.

CodeGuru Logo

CodeGuru covers topics related to Microsoft-related software development, mobile development, database management, and web application programming. In addition to tutorials and how-tos that teach programmers how to code in Microsoft-related languages and frameworks like C# and .Net, we also publish articles on software development tools, the latest in developer news, and advice for project managers. Cloud services such as Microsoft Azure and database options including SQL Server and MSSQL are also frequently covered.

Property of TechnologyAdvice. © 2026 TechnologyAdvice. All Rights Reserved

Advertiser Disclosure: Some of the products that appear on this site are from companies from which TechnologyAdvice receives compensation. This compensation may impact how and where products appear on this site including, for example, the order in which they appear. TechnologyAdvice does not include all companies or all types of products available in the marketplace.