Click here to Skip to main content
15,902,777 members
Home / Discussions / C#
   

C#

 
QuestionC# winsock getdata problem Pin
_tasleem9-May-06 9:30
_tasleem9-May-06 9:30 
QuestionDefining DataType to DataColumn Pin
NaNg152419-May-06 9:14
NaNg152419-May-06 9:14 
QuestionNetwork Traffic Pin
SoftcodeSoftware9-May-06 9:08
SoftcodeSoftware9-May-06 9:08 
AnswerRe: Network Traffic Pin
Ravi Bhavnani9-May-06 10:41
professionalRavi Bhavnani9-May-06 10:41 
GeneralRe: Network Traffic Pin
SoftcodeSoftware9-May-06 11:13
SoftcodeSoftware9-May-06 11:13 
QuestionCustom collections with DataGridView Pin
Wjousts9-May-06 8:13
Wjousts9-May-06 8:13 
QuestionRemoving white spaces from an ArrayList Pin
Rizwan Rathore9-May-06 7:47
Rizwan Rathore9-May-06 7:47 
AnswerRe: Removing white spaces from an ArrayList Pin
cshivaprasad9-May-06 7:51
cshivaprasad9-May-06 7:51 
friend this may resolve, ur first problem..
<br />
private void parseString(String x)<br />
		{<br />
			string tempstr;<br />
			int i=0,len,flag=0;<br />
			tempstr="";<br />
			<br />
			len=x.Length;<br />
			while(i < len)<br />
			{<br />
				if(x[i]!= ' ')<br />
				{<br />
					tempstr = tempstr + x[i];<br />
					flag = 0;<br />
				}<br />
				else<br />
				{<br />
					if(flag == 0)<br />
					{<br />
						str.Add(tempstr);<br />
						tempstr = "";<br />
						flag = 1;<br />
						index++;<br />
					}<br />
<br />
				}<br />
				i++;<br />
			}<br />
			str.Add(tempstr);<br />
			<br />
		}



In this str is arraylist

If u have still some doubt, mail me

ShivaJee
AnswerRe: Removing white spaces from an ArrayList Pin
Wjousts9-May-06 8:04
Wjousts9-May-06 8:04 
AnswerRe: Removing white spaces from an ArrayList Pin
Christian Graus9-May-06 10:37
protectorChristian Graus9-May-06 10:37 
Questiontab char Pin
Manu_819-May-06 7:45
Manu_819-May-06 7:45 
AnswerRe: tab char Pin
Wjousts9-May-06 8:14
Wjousts9-May-06 8:14 
GeneralRe: tab char Pin
Manu_819-May-06 8:16
Manu_819-May-06 8:16 
GeneralRe: tab char Pin
NaNg152419-May-06 9:18
NaNg152419-May-06 9:18 
Questionaccesing form from another Class Pin
cshivaprasad9-May-06 7:41
cshivaprasad9-May-06 7:41 
AnswerRe: accesing form from another Class Pin
led mike9-May-06 8:45
led mike9-May-06 8:45 
QuestionDllNotFoundException Pin
Larsenal9-May-06 7:40
Larsenal9-May-06 7:40 
AnswerRe: DllNotFoundException Pin
Phillip M. Hoff9-May-06 19:43
Phillip M. Hoff9-May-06 19:43 
QuestionCreating Application's Option Window Pin
student_rhr9-May-06 6:22
student_rhr9-May-06 6:22 
AnswerRe: Creating Application's Option Window Pin
Josh Smith9-May-06 7:09
Josh Smith9-May-06 7:09 
GeneralRe: Creating Application's Option Window Pin
student_rhr9-May-06 7:37
student_rhr9-May-06 7:37 
QuestionIncluding traditional C code in a C# project Pin
Kenny O'Dell9-May-06 5:44
Kenny O'Dell9-May-06 5:44 
AnswerRe: Including traditional C code in a C# project Pin
Andy Moore9-May-06 6:58
Andy Moore9-May-06 6:58 
GeneralRe: Including traditional C code in a C# project Pin
Kenny O'Dell9-May-06 10:32
Kenny O'Dell9-May-06 10:32 
GeneralRe: Including traditional C code in a C# project Pin
Andy Moore9-May-06 10:39
Andy Moore9-May-06 10:39 

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.