This lesson demonstrates some common Visual Studio IDE features, various windows, debugging features, code window features, customizations, and more found in Visual C# Express Edition. A more complete discussion of features is found in the Visual C# Express Edition Fundamentals series and the Visual…
This is the first of five videos that walks you through building your first Windows Store app with C#. In this video, we'll build a simple Hello world using XAML and C#. Step-by-Step tutorial from dev.windows.com Part 1 complete code [01:44] Before you start[02:24] Step 1: Create a new…
Mads Torgersen, C# specification lead, describes the new C# features to improve asynchronous development. You can get an early look at this new async programming model, available as the Async CTP, today!
Happy Birthday, Channel 9!!! We are 7 years old today! Hard to believe... What a great 7 years it has been. THANK YOU, NINERS! In celebration, we bring you the latest episode of Checking In with Erik Meijer. Our very special guest is Eric Lippert. To Erik, thank you for some many years of great…
Branching allows us to add logic to our applications. In this lesson introduces the if Decision statement (in its various forms) as well as the conditional operator. We also discuss how to refactor our code to make it more compact and less likely to produce errors by eliminating duplicate code.…
What is Roslyn? Traditionally, compilers are black boxes – source code goes in one end and object files or assemblies come out the other end. The Roslyn project changes that model by opening up the Visual Basic and C# compilers as APIs. These APIs allow tools and end-users to share in the wealth of…
In this video we begin wading into the topic of methods by creating a helper method to break out code we may need to use in multiple places within our code. We create and call our methods to retrieve a value, create and use input parameters, learn about string formatting, and create overloaded…
DevRadioJan 18, 2013 at 5:00 PM7
Jerry Nixon
,
DevRadio
and
ChrisCaldwell
Avg Rating: 5
(2)
Abstract: Jerry Nixon welcomes CEO of Xamarin, Nat Friedman and President of Hitcents, Chris Mills to the show as they discuss how Hitcents used Xamarin’s MonoTouch to launch their app, “Draw a Stickman EPIC” on Windows 8. Tune in as they chat about the ins-and-outs on how easy it was to use…
In this lesson we talk about arrays, which are multi-part variables—a "bucket" containing other "buckets," if you will. We demonstrate how to declare and utilize arrays, including setting and retrieving their values, initializing their values, attempting to access values outside…
Many of you use Sysinternals tools to help you manage computing responsibilities ranging from monitoring/understanding process activity with Process Explorer to debugging Win32 code with DebugView. With over 70 utilities to choose from, Sysinternals tools cover a wide swath of…