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

C#

 
GeneralRe: convert.ToInt32 Pin
Guffa7-May-09 0:49
Guffa7-May-09 0:49 
I while back I wrote this method that you can use to replace Int32.Parse, and that is about ten times faster. That could help to speed up it a bit.

public static int ParseInt32(string text) {
	long value = 0;
	long sign = 1;
	bool first = true;
	foreach (char c in text) {
		if (c >= '0' && c <= '9') {
			value = value * 10 + c - '0';
		} else if (c == '-' && first) {
			sign = -1;
		} else {
			throw new FormatException();
		}
		first = false;
	}
	value *= sign;
	if (value < int.MinValue || value > int.MaxValue) throw new OverflowException();
	return (int)value;
}


Despite everything, the person most likely to be fooling you next is yourself.

Questioncatch an object returned by java webservice in c# application. Pin
prasadbuddhika6-May-09 17:39
prasadbuddhika6-May-09 17:39 
AnswerRe: catch an object returned by java webservice in c# application. Pin
Spunky Coder6-May-09 20:00
Spunky Coder6-May-09 20:00 
QuestionBackup Program Pin
nsimbu6-May-09 14:08
nsimbu6-May-09 14:08 
QuestionListView Pin
al3xutzu006-May-09 12:26
al3xutzu006-May-09 12:26 
AnswerRe: ListView Pin
Henry Minute6-May-09 13:37
Henry Minute6-May-09 13:37 
AnswerRe: ListView Pin
Roberto Ho6-May-09 13:50
Roberto Ho6-May-09 13:50 
AnswerRe: ListView Pin
nsimbu6-May-09 13:51
nsimbu6-May-09 13:51 
QuestionConvert .Net datatype to Mysql datatype Pin
student19886-May-09 12:14
student19886-May-09 12:14 
AnswerRe: Convert .Net datatype to Mysql datatype Pin
Colin Angus Mackay6-May-09 12:21
Colin Angus Mackay6-May-09 12:21 
GeneralRe: Convert .Net datatype to Mysql datatype Pin
student19886-May-09 12:37
student19886-May-09 12:37 
GeneralRe: Convert .Net datatype to Mysql datatype Pin
Colin Angus Mackay6-May-09 12:47
Colin Angus Mackay6-May-09 12:47 
GeneralRe: Convert .Net datatype to Mysql datatype Pin
student19886-May-09 13:01
student19886-May-09 13:01 
GeneralRe: Convert .Net datatype to Mysql datatype Pin
Luc Pattyn6-May-09 13:09
sitebuilderLuc Pattyn6-May-09 13:09 
GeneralRe: Convert .Net datatype to Mysql datatype Pin
student19886-May-09 13:26
student19886-May-09 13:26 
GeneralRe: Convert .Net datatype to Mysql datatype Pin
Luc Pattyn6-May-09 13:58
sitebuilderLuc Pattyn6-May-09 13:58 
QuestionGateway port forwarding Pin
evangile6-May-09 11:47
evangile6-May-09 11:47 
AnswerRe: Gateway port forwarding Pin
harold aptroot6-May-09 11:59
harold aptroot6-May-09 11:59 
GeneralRe: Gateway port forwarding Pin
evangile6-May-09 12:05
evangile6-May-09 12:05 
QuestionRe: Gateway port forwarding Pin
harold aptroot6-May-09 12:10
harold aptroot6-May-09 12:10 
AnswerRe: Gateway port forwarding Pin
evangile6-May-09 12:17
evangile6-May-09 12:17 
GeneralRe: Gateway port forwarding Pin
harold aptroot6-May-09 22:08
harold aptroot6-May-09 22:08 
GeneralRe: Gateway port forwarding Pin
evangile6-May-09 23:05
evangile6-May-09 23:05 
GeneralRe: Gateway port forwarding Pin
harold aptroot6-May-09 23:36
harold aptroot6-May-09 23:36 
QuestionFind out if a class is initialized with reflection. Pin
belzer6-May-09 11:26
belzer6-May-09 11:26 

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.