This is my first post and I have given an example using C# which gets a string from user and inserts anywhere in-between the existing string.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
string data = "This is my article";
Console.WriteLine(data); //displays data


PrahaladPosted Aug 8, 2012, 11:31 PM
Thanks bro...
Mahesh ChandPosted Aug 8, 2012, 2:54 PM
Welcome to C# Corner Prahalad.