Sign in
MSDN Blogs
Microsoft Blog Images
More ...
MSDN Blogs
>
C# Frequently Asked Questions
Server & Tools Blogs
>
Developer Tools Blogs
>
C# Frequently Asked Questions
Executive Bloggers
S. Somasegar
Brian Harry
Scott Guthrie
Jason Zander
Visual Studio
Visual Studio
Blend
LightSwitch
Line of Business Apps by Beth Massi
Setup & Install by Heath Stewart
Application Lifecycle Management
Visual Studio ALM
Team Foundation Service
Languages
Visual Basic
Visual C#
Visual C++
Visual F#
JavaScript
.NET Framework
.NET Framework
.NET Parallel Programming
ADO.NET (Managed Providers, DataSet & EF)
ASP.NET by Scott Hanselman
Base Class Library (BCL)
Silverlight
WCF Data Services
Workflow
Platform Development
Internet Explorer
Apps for Office and SharePoint 2013
SharePoint
Office
Web
Windows 8
Windows Store
Windows Azure
Windows Phone
C# Frequently Asked Questions
The C# team posts answers to common questions and describes new language features
Subscribe
Comments
Contact
Menu
Blog Home
Atom
Translate this page
Powered by
Microsoft® Translator
Live Now on Developer Tools Blogs
Tags
.NET Framework
.NET Framework 4
async
asynchronous programming
await
C#
C# 3.0
C# 4.0
C# compiler
C#/VB.NET Equivalents
DLR
dynamic language runtime
expression trees
IDE
parallel-processing
parallel-programming
reflection
roslyn
Task Parallel Library
Tips
TPL
Visual Studio
Visual Studio 2010
Visual Studio Async CTP
WPF
More
▼
Less
▲
Related resources
Visual Studio Developer Center
Visual Studio Product Website
Archives
Archives
September 2012
(1)
June 2012
(2)
April 2012
(1)
February 2012
(3)
January 2012
(2)
December 2011
(1)
November 2011
(3)
October 2011
(1)
August 2011
(2)
April 2011
(1)
March 2011
(1)
February 2011
(1)
November 2010
(1)
October 2010
(1)
September 2010
(1)
August 2010
(1)
July 2010
(2)
June 2010
(2)
May 2010
(1)
April 2010
(2)
March 2010
(1)
February 2010
(1)
January 2010
(2)
November 2009
(1)
October 2009
(2)
September 2009
(1)
March 2009
(1)
January 2009
(1)
October 2006
(2)
March 2006
(3)
February 2005
(1)
December 2004
(4)
November 2004
(1)
October 2004
(15)
August 2004
(3)
July 2004
(3)
June 2004
(1)
May 2004
(8)
April 2004
(4)
March 2004
(36)
More
▼
Less
▲
Blog - Title
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
C# Frequently Asked Questions
Microsoft "Roslyn" September 2012 CTP now available
Posted
9 months ago
by
CSharpFAQ
5
Comments
Following last Wednesday’s official launch of Visual Studio 2012, we’re excited to announce that the Roslyn September 2012 CTP is now available for download and provides support for VS 2012 RTM. Please note that Visual Studio 2010 is no longer...
C# Frequently Asked Questions
Understanding a Simple Async Program
Posted
over 1 year ago
by
CSharpFAQ
2
Comments
by Alan Berman The Async feature in Visual Studio 2012 RC makes it easy to invoke asynchronous methods. If you mark a method with or async modifier, you can use the await operator in the method. When control reaches an await expression in the async...
C# Frequently Asked Questions
Announcing Microsoft “Roslyn” June 2012 CTP
Posted
over 1 year ago
by
CSharpFAQ
3
Comments
Today, we're excited to announce that the Roslyn June 2012 CTP is now available for download ! Since the first public release of Roslyn , we’ve been hard at work implementing new language features , addressing top customer feedback from the Oct...
C# Frequently Asked Questions
Async Targeting Pack for Visual Studio 11 now available for .NET 4 and Silverlight 5
Posted
over 1 year ago
by
CSharpFAQ
4
Comments
If you’ve held off on trying Visual Studio 11 Beta because your .NET 4 or Silverlight 5 app uses the Async CTP, your wait is over! Today we’ve published the Async Targeting Pack for Visual Studio 11 , a NuGet package that lets your Visual...
C# Frequently Asked Questions
Visual Studio 11 Beta Is Here!
Posted
over 1 year ago
by
CSharpFAQ
20
Comments
As you may have seen in Jason’s blog , Visual Studio 11 Beta is available for download today, including the Beta version of C# 5.0! If you’ve tried out the Visual Studio 11 Developer Preview, you already know that this is an exciting release...
C# Frequently Asked Questions
Implementing a Code Action using Roslyn
Posted
over 1 year ago
by
CSharpFAQ
9
Comments
By Brian Rasmussen The Roslyn Services API makes it easy to implement extensions that detect and fix code issues directly in Visual Studio. The Roslyn Services API is available as part of the Roslyn CTP . In this post we implement a Visual Studio...
C# Frequently Asked Questions
Start Coding for the Kinect
Posted
over 1 year ago
by
CSharpFAQ
1
Comments
by Alan Berman I'm intrigued by all the interesting industry apps being developed for the Kinect. I started wondering how easy it is to start programming the Kinect using Visual Studio on a PC. It is very easy to get started, especially since the Kinect...
C# Frequently Asked Questions
Roslyn CTP Introduces Interactive Code for C#
Posted
over 1 year ago
by
CSharpFAQ
2
Comments
There's been a lot of posts on using the Roslyn CTP APIs for syntax trees, semantic binding, and IDE smart editor features. The Roslyn CTP also introduces a set of features for C# we refer to as "Interactive". These features won't be new to VB, but we...
C# Frequently Asked Questions
Using Async for File Access
Posted
over 1 year ago
by
CSharpFAQ
2
Comments
by Alan Berman The new Async feature in Visual Studio makes it easy to code asynchronous method calls. To make synchronous code asynchronous, you can simply call an asynchronous method instead of a synchronous method and add a few keywords to the code...
C# Frequently Asked Questions
Introduction to the Roslyn Scripting API
Posted
over 2 years ago
by
CSharpFAQ
5
Comments
by Brian Rasmussen In this post we take a look at how the Roslyn Scripting API can enable applications to evaluate code at runtime. While this has been possible since the dawn of .NET through the use of Reflection, Lightweight Code Generation, CodeDom...
C# Frequently Asked Questions
Using the Roslyn Symbol API
Posted
over 2 years ago
by
CSharpFAQ
1
Comments
by Kevin Pilch-Bisson I’m back again, to move along to the next stage of the compiler pipeline, and take a look at working with Symbols in the using the Roslyn CTP . The Roslyn CTP’s symbol API provides a top-down view of all the symbols available. Before...
C# Frequently Asked Questions
Roslyn Syntax Visualizers
Posted
over 2 years ago
by
CSharpFAQ
0
Comments
Hi All! A few weeks ago, we announced the Microsoft "Roslyn" CTP . I hope many of you have had a chance to download the CTP and take it for a spin :) If you haven’t, do give it a try . To recap – in the Roslyn CTP, we are previewing a powerful...
C# Frequently Asked Questions
Using the Roslyn Syntax API
Posted
over 2 years ago
by
CSharpFAQ
2
Comments
By Kevin Pilch-Bisson As promised back when we released the Roslyn CTP, here is the first of a series of blog posts that help explain the various parts of the Roslyn API. If you don’t have the Roslyn CTP, you can get it from our MSDN page , and install...
C# Frequently Asked Questions
Introducing the Microsoft “Roslyn” CTP
Posted
over 2 years ago
by
CSharpFAQ
5
Comments
By Kevin Pilch-Bisson As Soma mentioned earlier, today we’ve made a Community Technology Preview (CTP) available for download ! The Roslyn project is a forward looking effort to make the wealth of language understanding that the compiler generates...
C# Frequently Asked Questions
C# 2010 Soup to Nuts Series
Posted
over 2 years ago
by
CSharpFAQ
4
Comments
By Emily Gibson New! C# 2010 Soup to Nuts Series Explore this webcast series on Visual C# 2010 presented by Developer Evangelist, Bill Steele. Learn about class libraries, operator basics, branching and looping, and more as Bill dives deep into this fantastic...
C# Frequently Asked Questions
New Async Programming Videos
Posted
over 2 years ago
by
CSharpFAQ
2
Comments
Some great new video's on MSDN showing how to do async programming using the Async CTP. http://msdn.microsoft.com/en-us/vstudio/hh378091.aspx There are different versions of video's for both VB and C#. This is a great opportunity to see the power...
C# Frequently Asked Questions
Async CTP (SP1 Refresh)
Posted
over 2 years ago
by
CSharpFAQ
15
Comments
By Jeremy Meng Visual Studio Async CTP (SP1 Refresh) is available now! You are welcome to download and try it out! Thanks to the new Async feature coming in Visual Basic and C# it has never been so easy to write asynchronous code. With the newly...
C# Frequently Asked Questions
How to programmatically launch Debugger in a remote machine
Posted
over 2 years ago
by
CSharpFAQ
2
Comments
This blog post explains how to kick off a debugger in a remote machine, programmatically. We are going to use WMI interfaces to achieve this. Use WMI, to start the debuggee process and attach a registered debugger to it using WMI. I have given a sample...
C# Frequently Asked Questions
Visual Studio is Hiring
Posted
over 2 years ago
by
CSharpFAQ
5
Comments
Do you want to work on a product used by millions of developers around the world? I do! Come join me to deliver Visual Studio, the set of developer tools used across Microsoft and around the world. We have open positions available across Test, Dev and...
C# Frequently Asked Questions
Microsoft Help Viewer 1.1 - Updates Planned for Visual Studio 2010 SP1
Posted
over 3 years ago
by
Kathleen McGrath - MSFT
1
Comments
Learn about the upcoming changes to the Help Viewer planned for Visual Studio 2010 SP1. Paul O’Rear, a Program Manager on the Library Experience team, describes the changes planned and demonstrates the new functionality of the viewer in an early...
C# Frequently Asked Questions
What’s Next in C#? Get Ready for Async!
Posted
over 3 years ago
by
Alexandra Rusina
17
Comments
Today we announced the Visual Studio Async CTP , which shows one of the major features we plan to include in a future release of C# and Visual Basic. This feature makes development of asynchronous applications--which include everything from desktop applications...
C# Frequently Asked Questions
Converting a VBA Macro to C# 4.0
Posted
over 3 years ago
by
Alexandra Rusina
25
Comments
I've talked a lot about improved COM interop in C# 4.0 and how much easier it is now to work with Office applications. This time I want to share some tips and tricks on how you can convert Visual Basic for Applications (VBA) macros to C# 4.0 by using...
C# Frequently Asked Questions
Blocking Collection and the Producer-Consumer Problem
Posted
over 3 years ago
by
Alexandra Rusina
11
Comments
This time I want to discuss features that belong to the new System.Collections.Concurrent namespace in the.NET Framework 4. When you design parallel applications, you often need thread-safe data storage as well as some mechanism of sending messages between...
C# Frequently Asked Questions
C# 4.0 PowerPoint Presentations
Posted
over 3 years ago
by
CSharpFAQ
46
Comments
Alexandru Ghiondea from the C# team created an excellent deck of slides that he used at Microsoft Days 2010 in Bulgaria. The C# team reused the deck several times for User Groups' presentations and talks. If you are planning a talk at your User Group...
C# Frequently Asked Questions
Parallel Programming: Task Cancellation
Posted
over 3 years ago
by
Alexandra Rusina
23
Comments
In this post, which is the third one in my parallel programming introduction series, I want to show how you can cancel parallel operations when working with the Task Parallel Library (TPL) . I’m going to modify the program that I started in the previous...
Page 1 of 5 (121 items)
1
2
3
4
5