Click here to Skip to main content
15,920,896 members
Home / Discussions / C#
   

C#

 
QuestionC# Asynchronous Sockets Pin
snapplegil15-Apr-07 7:49
snapplegil15-Apr-07 7:49 
AnswerRe: C# Asynchronous Sockets Pin
pbraun15-Apr-07 12:36
pbraun15-Apr-07 12:36 
GeneralRe: C# Asynchronous Sockets Pin
snapplegil15-Apr-07 17:15
snapplegil15-Apr-07 17:15 
GeneralRe: C# Asynchronous Sockets Pin
pbraun15-Apr-07 17:29
pbraun15-Apr-07 17:29 
Questiondrag & drop problem Pin
xtremetechnology15-Apr-07 6:23
xtremetechnology15-Apr-07 6:23 
AnswerRe: drag & drop problem Pin
Luc Pattyn15-Apr-07 8:54
sitebuilderLuc Pattyn15-Apr-07 8:54 
GeneralRe: drag & drop problem Pin
xtremetechnology15-Apr-07 9:05
xtremetechnology15-Apr-07 9:05 
GeneralRe: drag & drop problem Pin
Luc Pattyn15-Apr-07 9:15
sitebuilderLuc Pattyn15-Apr-07 9:15 
QuestionUsing Reports in Visual C#.NET 2005 Pin
Beuckelaere Tom15-Apr-07 5:33
Beuckelaere Tom15-Apr-07 5:33 
Questionconverting number String to Float ?! Pin
sanaziuse15-Apr-07 5:22
sanaziuse15-Apr-07 5:22 
AnswerRe: converting number String to Float ?! Pin
Guffa15-Apr-07 5:28
Guffa15-Apr-07 5:28 
GeneralRe: converting number String to Float ?! Pin
sanaziuse15-Apr-07 5:55
sanaziuse15-Apr-07 5:55 
AnswerRe: converting number String to Float ?! Pin
Jaiprakash M Bankolli15-Apr-07 7:33
Jaiprakash M Bankolli15-Apr-07 7:33 
AnswerRe: converting number String to Float ?! Pin
Martin#15-Apr-07 7:53
Martin#15-Apr-07 7:53 
Question.Net 30 y .Net20 Pin
123456uio15-Apr-07 5:21
123456uio15-Apr-07 5:21 
AnswerRe: .Net 30 y .Net20 Pin
Guffa15-Apr-07 5:33
Guffa15-Apr-07 5:33 
AnswerRe: .Net 30 y .Net20 Pin
Thomas Stockwell15-Apr-07 5:37
professionalThomas Stockwell15-Apr-07 5:37 
QuestionHi, How can I set priority for some Timer's events? Pin
hasi2715-Apr-07 4:45
hasi2715-Apr-07 4:45 
AnswerRe: Hi, How can I set priority for some Timer's events? Pin
Jun Du15-Apr-07 5:31
Jun Du15-Apr-07 5:31 
AnswerRe: Hi, How can I set priority for some Timer's events? Pin
S. Senthil Kumar15-Apr-07 5:39
S. Senthil Kumar15-Apr-07 5:39 
AnswerRe: Hi, How can I set priority for some Timer's events? Pin
Luc Pattyn15-Apr-07 6:20
sitebuilderLuc Pattyn15-Apr-07 6:20 
Questionconvert an expresion in a result Pin
xtremetechnology15-Apr-07 3:17
xtremetechnology15-Apr-07 3:17 
AnswerRe: convert an expresion in a result Pin
Jun Du15-Apr-07 5:19
Jun Du15-Apr-07 5:19 
GeneralRe: convert an expresion in a result Pin
xtremetechnology15-Apr-07 5:38
xtremetechnology15-Apr-07 5:38 
GeneralRe: convert an expresion in a result Pin
Jun Du15-Apr-07 6:12
Jun Du15-Apr-07 6:12 
That type of string can be split to two categories: operands and operators. Operands are simply numbers. With operators, you cast them one by one. Pseudo code may be like this:
//...
switch(operator1)
{
case "+":
  result = operand1+operand2;
  break;
case "-":
  result = operand1-operand2;
  break;
//...
}

I am not aware of any shortcuts in this regard.


Best,
Jun

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.