Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

rich text box and array

Status
Not open for further replies.

evilmiky

Programmer
Jun 27, 2006
1
CZ
Hello,i want fill array from richtextbox.text or from string(i mean in array will be all single chars like {"a","b"}... I try something but with no effect. thx for advice
 
what do you want an array of?

try

Code:
char[] array = richTextBox.Text.ToCharArray();


mr s. <;)

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top