Saturday, March 21, 2015

Quering IP Address


using System.Windows.Forms;
using System.Net; //Added
using System.Net.Sockets; //Added

Simple Server and Client Application


Simple Server in Console
using System.Threading.Tasks;
using System.Net;//we add this using system
using System.Net.Sockets;//we add this using system

Friday, March 20, 2015

Using DNS Class

...
using System.Windows.Forms;
using System.Net; //Added
using System.Net.Sockets; //Added

Thursday, March 12, 2015

Throwing Exceptions From Task


using System.Text;
using System.Threading.Tasks;

namespace ThrowingExceptionsFromTask
{

Friday, March 6, 2015

Fibonacci Async Lab


using System.Windows.Forms;
using System.Threading; //Added

AsyncAwait Lab Project



using System.Windows.Forms;
using System.Threading; //Added

Count Vowels From text files in Debug Folder


using System.Windows.Forms;
using System.IO; //Add to work with fileSystem

namespace ZauBawk_CountVowelsFromTxtFiles
{

Five Parallel loop in Console Application


using System.Threading.Tasks;
using System.Collections.Concurrent; //Added to use BlockingCollection
using System.Threading; //Added to use CancellationTokenSource

namespace ZauBawk_FiveParallel_Lab
{

Wednesday, March 4, 2015

Asynch Programming With Async Await Ex2


using System.Windows.Forms;
using System.Threading; //Added

namespace Asynch_Programming_With_Async_Await_Ex2
{

Asynchronous Programming With Async Await


using System.Windows.Forms;
using System.Threading; //Added

namespace Asynchronous_Programming_With_Async_Await
{

Sunday, March 1, 2015

C# reading links

C# Examples
Dotnetperls.com


System.Net (For next quarter)
Major class we will mostly use will be "dns class".


Read more a lot on Async, Task, Parallel Programming, OOP.