Click here to Skip to main content
15,897,371 members
Home / Discussions / C#
   

C#

 
AnswerRe: DateTime parse help Pin
mav.northwind2-Apr-06 0:11
mav.northwind2-Apr-06 0:11 
QuestionProblems updating records with Access DB Pin
James M 19821-Apr-06 22:32
James M 19821-Apr-06 22:32 
GeneralRe: Problems updating records with Access DB Pin
Guffa2-Apr-06 4:33
Guffa2-Apr-06 4:33 
QuestionTELNET Pin
picasso21-Apr-06 22:01
picasso21-Apr-06 22:01 
QuestionMouse wheel settings API Pin
eligazit1-Apr-06 21:36
eligazit1-Apr-06 21:36 
QuestionWebRequest.GetResponse() Pin
mikker_1231-Apr-06 15:24
mikker_1231-Apr-06 15:24 
AnswerRe: WebRequest.GetResponse() Pin
Guffa2-Apr-06 0:25
Guffa2-Apr-06 0:25 
QuestionCode explain... Pin
KORCARI1-Apr-06 14:47
KORCARI1-Apr-06 14:47 
Hi.Can anybody explain me how this function works cause Im trying to understand this code...


public static double[] convertPolyList(String theStr)
{
// initialize return value to unity
double[] theResult = {1};

// polynomials seperated by ']' characters
theStr = theStr.replace('(', ' ');
theStr = theStr.replace('[', ' ');
theStr = theStr.replace(')', ';');
theStr = theStr.replace(']', ';');
theStr = theStr.trim();
StringTokenizer theToken = new StringTokenizer(theStr, ";");
int index = 0;
for (index = 0; theToken.countTokens() > 0; index++)
{
double[] theArray = convertPoly(theToken.nextToken());
theResult = multiply(theResult, theArray);
}
return theResult;
}
AnswerRe: Code explain... Pin
Kir Birger1-Apr-06 15:36
Kir Birger1-Apr-06 15:36 
QuestionC# SetEnvironmentVariable Pin
Kir Birger1-Apr-06 14:25
Kir Birger1-Apr-06 14:25 
AnswerRe: C# SetEnvironmentVariable Pin
Robert M Greene1-Apr-06 14:55
Robert M Greene1-Apr-06 14:55 
GeneralRe: C# SetEnvironmentVariable Pin
Kir Birger1-Apr-06 15:00
Kir Birger1-Apr-06 15:00 
AnswerRe: C# SetEnvironmentVariable Pin
Robert M Greene1-Apr-06 14:59
Robert M Greene1-Apr-06 14:59 
GeneralRe: C# SetEnvironmentVariable Pin
Kir Birger1-Apr-06 15:33
Kir Birger1-Apr-06 15:33 
QuestionRe: C# SetEnvironmentVariable Pin
leppie1-Apr-06 16:44
leppie1-Apr-06 16:44 
AnswerRe: C# SetEnvironmentVariable Pin
Kir Birger1-Apr-06 16:47
Kir Birger1-Apr-06 16:47 
GeneralRe: C# SetEnvironmentVariable Pin
Robert M Greene1-Apr-06 17:24
Robert M Greene1-Apr-06 17:24 
GeneralRe: C# SetEnvironmentVariable Pin
Kir Birger1-Apr-06 17:45
Kir Birger1-Apr-06 17:45 
QuestionC# Cannot find file Pin
tjDieHard1-Apr-06 13:51
tjDieHard1-Apr-06 13:51 
AnswerRe: C# Cannot find file Pin
ricardojb1-Apr-06 14:14
ricardojb1-Apr-06 14:14 
GeneralRe: C# Cannot find file Pin
tjDieHard1-Apr-06 14:19
tjDieHard1-Apr-06 14:19 
AnswerRe: C# Cannot find file Pin
Guffa1-Apr-06 14:35
Guffa1-Apr-06 14:35 
GeneralRe: C# Cannot find file Pin
tjDieHard1-Apr-06 14:45
tjDieHard1-Apr-06 14:45 
GeneralRe: C# Cannot find file Pin
cbhkenshin1-Apr-06 18:29
cbhkenshin1-Apr-06 18:29 
GeneralRe: C# Cannot find file Pin
Guffa2-Apr-06 0:39
Guffa2-Apr-06 0: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.