8 Most Frequently Used And Useful PHP Array Operations

php arrays

Array is one of the most vital part in every programming languages. It is also important to know what facilities and built-in functionality a programming language provides. PHP provides a very strong set of such efficient ways to deal with array data … [Read more...]

How To Work With LinQ C# Lambda Expression

linq to xml tutorial

Well, though I have written few tutorials on LinQ and though those will be enough as reference for a programmer to get a solid start, I came to feel that, writing about details on C# lambda expression to be used in LinQ query are missing here and … [Read more...]

Few Useful Smarty Examples And Tips

smarty tips

If you have already read my basic smarty tutorial, then it is enough to work with it and get help in small parts from the official documentation of smarty. I have been actually working this way. But, I came to realize that, often I am forgetting or … [Read more...]

How To Work With Multithreaded Programming In C#.NET Application

multithreaded programming

While working with desktop application development, we may sometimes required to work with Multithreaded programming. It can also help in optimizing the performance of the software as it make most usage of the CPU core(s) and thus providing better … [Read more...]

Getting Started With Using Dictionary Collection In C#

C# Dictionary Tutorials

The term 'Dictionary' in C# programming, has some other synonyms to refer it such as "associative array", "key-value pair", "index-value pair" etc. Dictionary make use of 'hash table' data structure to build up the index/value pair. This is actually … [Read more...]

How To Work With C# Serial Port Communication

C# Serial Port Communication

In today's programming tutorial, I am going to describe some basics about how we can perform serial port communication from our C#.NET applications. Serial communications can be done via either direct to physical serial port connected to the computer … [Read more...]

Pipe Email To PHP And Parse Content Tutorial

Piping Email To Php

Did you ever think how a email group works, on behind the screen? You send an email to an email address(an unique email address dedicated to a email group), then it is being saved and show on the email group's web page, and also sent out to all email … [Read more...]

Apply LinQ To XML Data Using C#

linq to xml tutorial

On my earlier articles, I have described about working with linq on sql server database, which usually known as 'Linq To SQL'. Today I am going to show how linq can be applied on XML data along with c# code examples. This is known as 'Linq To XML'.I … [Read more...]