Loading User Information from Channel 9
Something went wrong getting user information from Channel 9
Loading User Information from MSDN
Something went wrong getting user information from MSDN
Loading Visual Studio Achievements
Something went wrong getting the Visual Studio Achievements
BlockingCollection<T> Demonstration in Producer-Consumer Scenarios
Oct 30, 2009 at 5:31 AMWhy does BlockingCollection<T> not expose an event for the consumer?
Kim Hamilton and Wes Dyer: Inside .NET Rx and IObservable/IObserver in the BCL (VS 2010)
Aug 04, 2009 at 12:37 PMIn your first C# sample...
var o = Observable.Return(1); o.Subscribe( x => Console.WriteLine("OnNext({0})", x), ex => Console.WriteLine("Error()"), () => Console.WriteLine("Completed()") );I see you are creating an IObservable object, and you are subscribing to it, but what is telling the observable object to begin calling the OnNext method on its subscribers?
Scott Guthrie: Silverlight 3 is here!
Jul 10, 2009 at 4:40 PMI wish Silverlight had an option to disable the screensaver when playing video. It's the only reason I never use the Silverlight player on Channel 9. I am glad to see Silverlight 3 has shipped, but I am disappointed to see the option is still not available.
Better Software Quality with Visual Studio Team System 2010
Oct 07, 2008 at 4:53 AMMSDN/TechNet Site Redesign: More Useful, Better Experience and Search Really Works :)
May 28, 2008 at 6:27 PMHowever, I am still unable to use Subscriber Downloads with Firefox. When I select an item and click "Download," it tries to download an aspx file. Is there any tweaking I can do, or do you guys still insist on me opening IE for this web site?
Programming in the Age of Concurrency - Anders Hejlsberg and Joe Duffy: Concurrent Programming with
Nov 03, 2007 at 8:02 PMThis is not always the case. How would I translate the following into a parallel for loop?
// ShouldCancel() creates a lock and checks some boolean value
for (int i = 99; i >= 3 && !ShouldCancel(); i -= 3) { ... }
Are there overloads for this yet? I would imagine it would be something like this...
int i = 0;
Parallel.For(
() => i = 99;
() => i >= 3 && !ShouldCancel(),
() => i -= 3,
() => ...
);
Open Specification Promise: What. How. Why.
Nov 21, 2006 at 7:08 PMConversation with Soma: VS2005 SP1 on Vista, Visual Studio Evolution, How to Become a VP
Oct 27, 2006 at 9:47 AMConversation with Soma: VS2005 SP1 on Vista, Visual Studio Evolution, How to Become a VP
Oct 25, 2006 at 5:55 PMThanks, but I am looking for a way to do this in unmanaged C++. I would love to throw the CLR switch in my MFC apps, but the performance hit is too dramatic. Even the UI performance. Building the code is also much slower.
Gary
Conversation with Soma: VS2005 SP1 on Vista, Visual Studio Evolution, How to Become a VP
Oct 24, 2006 at 8:57 PMYou mentioned the reason for Visual Studio 2005 compatibility issues was lack of admin privileges. I run as a normal user all the time in XP and I run Visual Studio 2003 and 2005. If I need to modify the system in some way, like install a service, I have to do it at the command line anyway. I just use runas in those cases.
Are there any issues running Visual Studio 2005 in Vista as a standard user which do not exist in XP?
Also, what kind of issues does Visual Studio 2003 have with Vista?
About native C++ support, do you plan on putting WPF support into MFC? If not, is this exposed through COM or standard C calls?
Thanks,
Gary
See more comments…