Sign In
C# Frequently Asked Questions
The C# team posts answers to common questions and describes new language features
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Tags
.NET Framework
.NET Framework 3.5
.NET Framework 4
async
asynchronous programming
await
blocking collection
C#
C# 2.0
C# 3.0
C# 4.0
C# compiler
C# optional parameters
C#/VB.NET Equivalents
COM interop
concurrent
consumer-producer pattern
contravariance
covariance
Crystal Reports
debug
debugger
debugging
DLR
dynamic
dynamic language runtime
dynamic methods
DynamicObject
ExpandoObject
expression trees
IDE
Kinect
LINQ
LINQ to Objects
parallel-processing
parallel-programming
reflection
REPL
roslyn
Shyam Namboodiripad
start debugger remotely
synchronization context
Syntax Visualizer
task cancellation
Task Parallel Library
task scheduler
Task-based Asynchronous Pattern
Tips
TPL
User Group
variance
VBA
Visual Basic
Visual Basic for Applications
Visual Studio
Visual Studio 2008
Visual Studio 2010
Visual Studio Async CTP
WMI
WPF
Browse by Tags
MSDN Blogs
>
C# Frequently Asked Questions
>
All Tags
>
parallel-programming
Tagged Content List
Blog Post:
Using Async for File Access
CSharpFAQ
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, as shown in the examples below. You no longer...
on
23 Jan 2012
Blog Post:
Blocking Collection and the Producer-Consumer Problem
Alexandra Rusina
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 tasks. Once again, this post will touch on just...
on
11 Aug 2010
Blog Post:
Parallel Programming: Task Cancellation
Alexandra Rusina
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 posts. By the way, here’s the full list of posts...
on
19 Jul 2010
Blog Post:
Parallel Programming: Task Schedulers and Synchronization Context
Alexandra Rusina
Thanks to everyone who provided feedback on my previous post Parallel Programming in .NET Framework 4: Getting Started . As promised, I am continuing the series. This time, let’s go a little bit deeper and talk about task schedulers , synchronization context , tasks that return values , and some other...
on
18 Jun 2010
Blog Post:
Parallel Programming in .NET Framework 4: Getting Started
Alexandra Rusina
With this post I want to start a series devoted to the new parallel programming features in .NET Framework 4 and introduce you the Task Parallel Library (TPL) . Update. The list of posts in this series: Getting Started (this post) Task Schedulers and Synchronization Context Task Cancellation Blocking...
on
1 Jun 2010
Page 1 of 1 (5 items)