Do you have any difficulty to edit XML files? You can use this cool application to feel better when you are working with XML !! good luck 🙂 Downlod here
Vb.net
How can merge two datatables?
Here I will teach you how can merge two datatables : You can whatch the video here Click here to convert this Vb.net code to C#
.Net Developer Interview tips !
If you have a scheduled job interview for .Net Developer position, please take a look at these questions
What is JSON ?
JSON (JavaScript Object Notation) is a lightweight data-structure format for data interchange, JSON could be read by human and it is easy for machine to generate and pars it. When should we use JSON? Assume you want create a service… Read More ›
How can bind a Dropdownlist in MVC and use selected value?
If you have been a ASP.Net programmer and now you decided to move to MVC this post can help you to find out how populate a Dropdownlist and how use selected value when the form is posted to the controller…. Read More ›
How can work with Dictionaries through VB.Net & C#?
What is Dictionaries ? Dictionaries are collections that are meant to store lists of key/value pairs to allow lookup of values based on a key. For example, assume that you needed to map student code to the full name of some… Read More ›
How can use XML Serialization in VB.Net and C#?
As you know there are different types of machines and OS in the world that they have to connect to each other and transfer data but each system has own structure and may cannot understand the data that are coming… Read More ›
How can make SAH1 through VB.Net & C#
What is SHA1? This part has been copied directly form Wikipedia SHA-1 is a cryptographic hash function designed by the United States National Security Agency and published by the United States NIST as a U.S. Federal Information Processing Standard. SHA… Read More ›
How To Write File Through VB.Net & C#
As I have promised ,today I am going to show you how to create a file, you can write (create) file in different ways same as reading file. Before you start, have to import System.IO. [VB.Net] Imports System.IO [C#] using… Read More ›
How Read a Files Through VB.Net & C#
Reading and writing files are two of the most common tasks in the world of development. As a .NET developer, .NET Framework makes it easy to perform these tasks. Before you start, have to import System.IO. [VB.Net] Imports System.IO [C#]… Read More ›