Search Result

Collapse
2 results in 0.0022 seconds.
Keywords
Members
Tags
tostring
  •  

  • What is the difference between string and String ? when is each one used ?

    HI ! I am expirienced C++ programmer , but new to C#

    1. What is the difference between string and String ? when is each one used ?

    2. I tried to use "ToCharArra y" , because I need the text in simple characters array.
    Code:
    	private System.Windows.Forms.TextBox UserName ;
            char [] name1;
            name1 = new char [64];
            name1 = this.UserName.Text.ToCharArray();
    ...
    See more | Go to post
    Last edited by Niheel; Feb 7 '11, 11:33 PM.

  • How to send a not selected value in a list box to string

    I'm trying to make a scheduling tool for my major at my school and I have a CourseEntryForm , RemainingCourse sForm and CoursesCompelte dForm.

    The CourseEntryForm has list boxes of courses that are required for graduation. I have been able to send the selected values of these list boxes to rich text boxes in the CoursesComplete dForm, however I need the courses that have not been selected in the list boxes to be sent to string that I...
    See more | Go to post
Working...