Browse by Tags

All Tags » C# (RSS)

Algorithms Cheat Sheet : Graph Search by Pawan_Mishra

Note : Below mentioned source code is taken from the book “Algorithm 4th Edition” by Robert Sedgewick. These code snippets are for personal reference. For more details on these topics you can either buy the book or refer the following site : http://algs4...
Filed under: , , , ,

Getting Started With Knockout.js by Pawan_Mishra

Client side template binding in web applications is getting popular with every passing day. More and more libraries are coming up with enhanced support for client side binding. jQuery templates is one very popular mechanism for client side template bindings...

Inauguration Of My Laptop by Pawan_Mishra

Today I received my new laptop which is an Intel Core i5-2450M @ 2.50GHz 4 GB RAM machine . The other laptop(office provided) which I have used for past two years for programming is an Intel Core2 Duo T6570 @ 2.10GHz machine. Reason why I am talking about...

Understanding Thread Local Storage(TLS) in TPL by Pawan_Mishra

.Net 4.0 simplified writing parallel code by introducing the parallel variant of For/ForEach loop constructs. Most often the code that we write using Parallel.For/ForEach looks something like this : Parallel.ForEach(<some collection>,(item) =>...

Generic Delegate Types : Func,Action and Predicate by Pawan_Mishra

C# language has observed dramatic transformation from 2.0 to 3.0 and finally with 4.0. C# 2.0 added generics , simplified delegate syntax, nullable types etc. C# 3.0 takes it a level next by adding LINQ , anonymous methods , anonymous types etc and finally...

Using IComparable<T> Interface by Pawan_Mishra

Level : Beginner to Intermediate C# language has constantly evolved over a constant period of time.Each new version introduced new features which changed the way we programmed and solved the problems. Whether it was introduction of generics in C# 2.0...

Collections in .Net by Pawan_Mishra

Undoubtedly anyone who has ever programmed with any computer programming language has one way or the other has used some data structure , class etc to collect similar kind of data in one place.For example in C/C++ in order to handle multiple data of similar...

Covariance and Contra-Variance in Delegates by Pawan_Mishra

If it comes to day to day normal programming with C# language then delegates by far are the most complicated thing to understand.Delegates add the asynchronous programming model to .Net Framework.Working with delegates involve following steps : Declare...
Filed under: ,

Wintellect’s Power Collection Library by Pawan_Mishra

First of all a very happy and prosperous new year wishes to everyone ……… :) CLR via C# by Jeffery Richter is one book which I really enjoyed reading.Any .Net developer whether experienced or a beginner will immediately benefit from the content provided...
More Posts