A good resource for finding out about the newer features in C#

I've mentioned before how much I appreciate the content on MSDN's Channel 9.

For those of you who are familiar with C# 1.0, but haven't yet taken the time to dive into the language features introduced since then, I strongly recommend the "whirlwind" series posted on Channel 9.

Here's a quick description of what these whirlwinds are all about:

Whirlwinds are bite-sized webcasts, each is shorter than 15 minutes. You can start anywhere in the series to learn about the parts you're most interested in.

Here are links to the individual whirlwinds:

I like the short format and can see it being relevant to individual (or small groups of) API features exposed by our products (a little like mini-DevTV sessions). If any of you have input about the concept, please post a comment or send me an email, ideally letting me know of specific topics in which you'd be interested.

2 responses to “A good resource for finding out about the newer features in C#”

  1. I am using a bit of c# code you provided:Launching AutoCAD with a specific profile using .NET.

    ProcessStartInfo psi =
    new ProcessStartInfo(exePath, "/p myprofile");

    psi.WorkingDirectory = @"c:\temp";

    Process pr = Process.Start(psi);

    I can start autocad with a different profile by passing a profile variable, but I can not get a different version of autocad to start by changing the exePath to a different version of autocad.

    How can I start autocad and pass the version, profile, acad root, and drawing name?

  2. Paul -

    I suggest posting your question to the ADN site (if you're a member) or otherwise the AutoCAD .NET Discussion Group, to see if somewhere there can help.

    Regards,

    Kean

Leave a Reply to Kean Walmsley Cancel reply

Your email address will not be published. Required fields are marked *