Geeks With Blogs

@jolson88
  • jolson88 @Worthless_Bums Perhaps followed by "DID THIS EVER WORK?" or "HOW DIDN'T I NOTICE THIS BEFORE?" LOL, Those are always interesting ones. about 2 days ago
  • jolson88 @kurt_bieg Ah yeah! I did (thanks a bunch!!!) :). I thought I replied, but I guess not. At least, I've been thinking of replying for days :P about 3 days ago
  • jolson88 @Clarkezone Nope, just MonoGame as it supports Windows Phone :). I don't think I'll have to change any code. about 7 days ago
  • jolson88 Hm, now that the Win8 version of Project Acorn is done, I wonder how long it will take to port to Windows Phone? #monogame about 7 days ago

News

Series

Add to Technorati Favorites


An Archived Managed World This blog has moved to http://www.managed-world.com/blog C# Dev Center
Visual Studio 2010 Training Course on Channel 9
This morning, Channel 9 launched the new Channel 9 Learning Center. From Channel 9, here’s a description of what the Learning Center is: “The Channel 9 Learning Center is the destination for free technical training on emerging Microsoft products and technologies. The Learning Center consists of a set of courses with each course including a set of videos, hands-on labs, and source code samples to get you up-to-speed quickly.” I’m pleased to say that Visual Studio 2010 is one of the first Training ......

Posted On Wednesday, October 21, 2009 5:08 AM

An Intro to Barrier
In this first stage of our Tour de BCL, we will be passing through the new Barrier class. So what is a Barrier? Let’s take a look at the boring technical description for a Barrier: A Barrier is a synchronization primitive that enforces the stopping of execution between a number of threads or processes at a given point and prevents further execution until all threads or processors have reached the given point. I don’t know about you, but sometimes technical descriptions like the above just sound like ......

Posted On Monday, February 9, 2009 11:17 PM

On the potential abuse of the var keyword
This question/conversation has come up quite often when chatting with friends and other developers. With the introduction of the "var" keyword in C# now, when should it be used (and, perhaps more importantly, when should it not be used). Here is a quick summary on my thoughts... My personal feeling is that it's a problem if I have to rely on Intellisense in order to be able to tell what type a variable is when it is declared. It's important to keep the future audience in mind while you are writing ......

Posted On Sunday, December 14, 2008 12:56 PM

Threading Basics: Race Conditions, Part 1
I've talked in the past about the importance of parallel computing for all us developers. It's a trend in computer software and hardware architecture that is not a fad. Currently, in the US, it is nearly impossible to buy a new computer that has only a single core. We're even starting to see some of the first quad-core laptops hit the market. It's becoming very important for developers to start dealing with parallel code. There's one problem: multithreaded development is hard. And in the class of ......

Posted On Thursday, September 18, 2008 8:13 PM

Building A Fluent Interface for MEF
How would you like to use the following way to configure dependencies in MEF? A fluent interface with POCO support (no attributes necessary)? Yup. var resolver = new FluentResolver(); resolver.Register<HelloW... And<HelloGreeting>().... And<ConsoleOutputter>... var domain = new CompositionContainer(resolv... // HelloWorld has dependencies on IGreeting and IOutputter var helloWorld = domain.Resolve<HelloWorl... helloWorld.SaySomething(); ......

Posted On Friday, July 4, 2008 9:59 PM

Visual Studio 2010 Beta 2 Training Kit Published
The Beta 2 version of DPE’s Visual Studio 2010 Training Kit is now live (you can find it at http://tinyurl.com/Beta2Tra... A training kit includes presentations, hands-on labs, and demos. This content is designed to help you learn how to utilize a variety of Visual Studio 2010 and .NET Framework 4 technologies. The Beta 2 release of the Training Kit contains 15 presentations, 19 hands-on labs, and 13 demos. Many technologies are covered in this release, including: C# 4, VB 10, F#, Parallel Extensions, ......

Posted On Tuesday, October 20, 2009 5:54 AM

10-4 Episode 26: Creating Extensible Apps with MEF
In this episode of 10-4, we take a look at a new library in .NET Framework 4 and how it helps developers write applications that are more extensible and easier to maintain than before. For more information on the Managed Extensibility Framework, make sure to check out its home on Codeplex: http://www.codeplex.com/mef. For more 10-4 episodes, be sure to visit: http://channel9.msdn.com/sh... 10-4! Over and out ......

Posted On Monday, July 13, 2009 4:17 PM

An Intro to Barrier, cont.d
Well, I said I was going to be moving on to CountdownEvent, but I was wrong. there is one more aspect of using Barrier that I just had to share (thanks go to Stephen Toub on the Parallel Computing Platform team for bringing this up). In my first Barrier post, I had mentioned: Barrier is a great new synchronization primitive to use when there is a known amount of work to do that is being done by different workers that all have common synchronization points. To make a long story short, this isn’t strictly ......

Posted On Tuesday, February 24, 2009 10:42 AM

Copyright © Jason Olson | Powered by: GeeksWithBlogs.net | Join free