Click here to Skip to main content
15,908,175 members
Home / Discussions / C#
   

C#

 
GeneralRe: Collection Editor Pin
Ajmoda27-Sep-04 0:34
Ajmoda27-Sep-04 0:34 
Generalwill any one reply me "Distributing the string" Pin
MoustafaS26-Sep-04 23:16
MoustafaS26-Sep-04 23:16 
GeneralRe: Distributing the string Pin
sreejith ss nair26-Sep-04 23:42
sreejith ss nair26-Sep-04 23:42 
GeneralRe: Distributing the string Pin
MoustafaS26-Sep-04 23:52
MoustafaS26-Sep-04 23:52 
GeneralRe: will any one reply me "Distributing the string" Pin
exhaulted26-Sep-04 23:51
exhaulted26-Sep-04 23:51 
GeneralRe: will any one reply me "Distributing the string" Pin
MoustafaS26-Sep-04 23:55
MoustafaS26-Sep-04 23:55 
GeneralRe: will any one reply me "Distributing the string" Pin
sreejith ss nair27-Sep-04 0:05
sreejith ss nair27-Sep-04 0:05 
GeneralRe: will any one reply me "Distributing the string" Pin
exhaulted27-Sep-04 0:09
exhaulted27-Sep-04 0:09 
I dont understand what your asking but i'll try to explain a bit more.

x is you string which currently equals "I Like It"
x.Split(); returns an array of strings and it requires a char parameter.
The char is the "Seperator" that you want to use to split your string with.
In the example you used in your original post that character would be a space ' '.So..

string[] myString = x.Split(' ');

makes myString into a 3 string array.
myString[0] will equal "I"
myString[1] will equal "Like"
myString[2] will equal "IT"

Hope that is what you were asking but your question didn't make sense.
If you need any mroe help then just ask.

Cheers

Kev
GeneralRe: will any one reply me "Distributing the string" Pin
Colin Angus Mackay27-Sep-04 0:31
Colin Angus Mackay27-Sep-04 0:31 
GeneralRe: will any one reply me "Distributing the string" Pin
exhaulted28-Sep-04 1:32
exhaulted28-Sep-04 1:32 
GeneralRe: C# Exersices Pin
sreejith ss nair26-Sep-04 22:41
sreejith ss nair26-Sep-04 22:41 
GeneralRe: C# Exersices Pin
Colin Angus Mackay26-Sep-04 22:55
Colin Angus Mackay26-Sep-04 22:55 
GeneralRe: C# Exersices Pin
Colin Angus Mackay26-Sep-04 23:00
Colin Angus Mackay26-Sep-04 23:00 
GeneralIE ActiveX and MHTML Pin
Furty26-Sep-04 21:59
Furty26-Sep-04 21:59 
GeneralSql Server CE - Replication Pin
pat27088126-Sep-04 21:56
pat27088126-Sep-04 21:56 
GeneralGeneric Logging on PocketPc Pin
mathon26-Sep-04 21:42
mathon26-Sep-04 21:42 
GeneralRe: Generic Logging on PocketPc Pin
Dave Kreskowiak27-Sep-04 4:23
mveDave Kreskowiak27-Sep-04 4:23 
QuestionFluid UI Toolkit??? Pin
Agent 8626-Sep-04 20:57
Agent 8626-Sep-04 20:57 
AnswerRe: Fluid UI Toolkit??? Pin
sreejith ss nair26-Sep-04 21:03
sreejith ss nair26-Sep-04 21:03 
GeneralRe: Fluid UI Toolkit??? Pin
Agent 8627-Sep-04 6:10
Agent 8627-Sep-04 6:10 
GeneralI realy need help ! Pin
Sakkijha26-Sep-04 20:33
Sakkijha26-Sep-04 20:33 
GeneralRe: I realy need help ! Pin
sreejith ss nair26-Sep-04 20:55
sreejith ss nair26-Sep-04 20:55 
GeneralRe: I realy need help ! Pin
Sakkijha26-Sep-04 21:07
Sakkijha26-Sep-04 21:07 
GeneralRe: I realy need help ! Pin
sreejith ss nair26-Sep-04 21:20
sreejith ss nair26-Sep-04 21:20 
GeneralRe: I realy need help ! Pin
Sakkijha26-Sep-04 21:28
Sakkijha26-Sep-04 21:28 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.