CodingSup3rnatur@l-360's Profile
Reputation: 735
Enlightened
- Group:
- Mentors
- Active Posts:
- 767 (1.27 per day)
- Joined:
- 30-September 10
- Profile Views:
- 8,768
- Last Active:
14 minutes ago- Currently:
- Viewing Forum: VB.NET
Previous Fields
- Country:
- GB
- OS Preference:
- Windows
- Favorite Browser:
- Chrome
- Favorite Processor:
- Intel
- Favorite Gaming Platform:
- XBox
- Your Car:
- Who Cares
- Dream Kudos:
- 425
- Expert In:
- C#
Latest Visitors
-
GunnerInc 
23 May 2012 - 19:45 -
kevin_911 
23 May 2012 - 11:54 -
darek9576 
23 May 2012 - 06:16 -
macosxnerd101 
17 May 2012 - 22:07 -
vivian2012 
17 May 2012 - 12:22 -
trevster344 
07 May 2012 - 13:37 -
Nerfpl 
07 May 2012 - 09:16 -
aresh 
07 May 2012 - 03:05 -
Auhn 
06 May 2012 - 09:27 -
nelboy 
04 May 2012 - 14:27
About Me
Hi everybody,
I'm Jason and I'm 19 years of age. I have just left school with four A-Levels and 13 GCSE's, and I am now beginning a honours degree in Computing and Mathematical Sciences (with the OU), with a view to completing a Masters in Software Development. I am also starting a new job that will get me some real world development experience. C# is my main language now, and I absolutely love it, although we mainly use VB.NET, and a business language called Progress at work.
I have been coding for about a 2.25 now, and have become very interested in OS development, and assembly language. I also enjoy learning the art Android development, when I can.
That tiny, slightly contrived (to show updating of a GUI control) method can now be called from the UI thread without making the UI unresponsive, without wastefully blocking a background thread; it can handle specific exceptions directly, it will update the GUI without cross thread communication issues, and the download can be cancelled on demand by the caller! Can you spot the differences between that and its synchronous equivalent?
Check out the Async CTP for .NET - here
I'm Jason and I'm 19 years of age. I have just left school with four A-Levels and 13 GCSE's, and I am now beginning a honours degree in Computing and Mathematical Sciences (with the OU), with a view to completing a Masters in Software Development. I am also starting a new job that will get me some real world development experience. C# is my main language now, and I absolutely love it, although we mainly use VB.NET, and a business language called Progress at work.
I have been coding for about a 2.25 now, and have become very interested in OS development, and assembly language. I also enjoy learning the art Android development, when I can.
private async void DownloadStringAndUpdateTextBoxAsync(Uri uri, TextBoxBase textBox, CancellationToken token) {
using (WebClient client = new WebClient()) {
try { textBox.Text = await client.DownloadStringTaskAsync(uri, token); }
catch (WebException) { /*process exception here*/ throw; }
catch (OperationCanceledException) { Debug.WriteLine("Download cancelled!"); throw; }
}
}
That tiny, slightly contrived (to show updating of a GUI control) method can now be called from the UI thread without making the UI unresponsive, without wastefully blocking a background thread; it can handle specific exceptions directly, it will update the GUI without cross thread communication issues, and the download can be cancelled on demand by the caller! Can you spot the differences between that and its synchronous equivalent?
Check out the Async CTP for .NET - here
My Information
- Member Title:
- D.I.C Addict
- Age:
- 19 years old
- Birthday:
- June 11, 1992
- Gender:
-
- Location:
- United Kingdom
- Interests:
-
Rock music from the past \m/.
Online gaming.
Watching Supernatural.
Sport
Writing code. Loving C#, in particular. - Full Name:
- Jason
- Years Programming:
- 2
- Programming Languages:
- C#, a bit of Actionscript 3.0 ,SQL,Progress4GL. Learning VB.NET, along with Java and C++ when I can.
Contact Information
- E-mail:
- Click here to e-mail me
|
|


Find Topics
Find Posts
View Reputation Given
My Contributions




|
Comments
raziel_
13 Sep 2011 - 11:31smohd
03 Jul 2011 - 15:49CodingSup3rnatur@l-360
03 Jul 2011 - 08:25macosxnerd101
02 Jul 2011 - 19:19MATTtheSEAHAWK
07 May 2011 - 12:26CodingSup3rnatur@l-360
04 May 2011 - 13:32Curtis Rutland
04 May 2011 - 06:30ishkabible
27 Apr 2011 - 13:19MATTtheSEAHAWK
24 Apr 2011 - 14:45I was like "I have to finish this!". Are you doing one?
ishkabible
20 Apr 2011 - 19:23Curtis Rutland
21 Mar 2011 - 10:42Curtis Rutland
01 Mar 2011 - 12:04CodingSup3rnatur@l-360
25 Feb 2011 - 15:54Neetu sharma
25 Feb 2011 - 11:52ishkabible
23 Feb 2011 - 16:50