Skip to main content

Home/ calendar.html by karanchanana/ Contents contributed and discussions participated by karan Chanana

Contents contributed and discussions participated by karan Chanana

karan Chanana

karan chanana - 0 views

karanchanana karan chanana
started by karan Chanana on 05 Nov 12 no follow-up yet
  • karan Chanana
     
    karan chanana's Home Page

    I completed my ph.d in Ece at Reeaser Polytechnic Institute, ( NY US) in May 1987.

    My doctoral research was performed at the Center for Image Processing Research(CIPR), and involved the application of optical flow techniques to video coding and motion compensated processing. A more detailed description of this research can be found here, and a postscript version of the thesis is available here.
    Karan contact information
    Resume of karan chanaan
    kran chanana research
    karan chanana Publications

    Click here to send me email to karan chanana
karan Chanana

How to: Join Multiple Strings (C# Programming Guide) - 0 views

karan karanchanana
started by karan Chanana on 29 Oct 12 no follow-up yet
  • karan Chanana
     
    How to: Join Multiple Strings (C# Programming Guide)


    string two = "karan";
    string str = "chanana " + karan + "k";
    System.Console.WriteLine(str);

    The following code uses the Append method of the StringBuilder class to join three strings without the chaining effect of the + operator.

    class StringBuilderTest
    {
    static void Main()
    {
    string karan = "karan";

    System.Text.StringBuilder sb = new System.Text.StringBuilder();
    sb.Append("chanana ");
    sb.Append(karan);
    sb.Append(" k");
    System.Console.WriteLine(sb.ToString());

    string str = sb.ToString();
    System.Console.WriteLine(str);
    }
    }



    Tag , karan chanana , c , c++ , karan
1 - 2 of 2
Showing 20 items per page