Saturday, February 28, 2015

Parallel For Stop (Console Application)

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Parallel_For_Stop
{

Parallel For Break (Console Application)

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Parallel_For_Break
{

Cancelling ParallelFor


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

namespace Cancelling_ParallelFor
{

Parallel Invoke Method (In Console)

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Parallel_InvokeMethod_2
{

The Parallel For (In Console)

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace TheParalleFor
{

The Parallel For Method


using System.Windows.Forms;
using System.Collections.Concurrent; //Added to use BlockingCollection
using System.Diagnostics; //Added to use stop watch.

namespace The_Parallel_For_Method
{

Aggregation Exceptions In Task


using System.Windows.Forms;
using System.Threading; //add it to the .Net

namespace AggregationExceptionsInTask
{

Task Exceptions


using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace TaskExceptions
{

Sunday, February 8, 2015

Thread Using System Threading


using System.Threading.Tasks;
using System.Threading; //added 
using System.Windows.Forms;

Fibonacci Lab


using System.Windows.Forms;

Asynchronous Methods Ex: 2


namespace AsynchronousMethods_Take2
{

Extension Methods and Lambda Expressions


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

Asynchronous Methods Lab Assignment


namespace Zau_AsynchronousMethos_Lab_2_4_2015
{

Intro to Asynchronous Methods


using System.Windows.Forms;

Drawing With The Mouse Events

Mouse Events

Adding Events To A Class


//=====WaterTankEventArgs class in EventProducerLib============
namespace EventProducerLib
{

Lambda Expression Lab