Click here to Skip to main content
15,891,788 members
Home / Discussions / C#
   

C#

 
GeneralA simple property question Pin
kensai12-Apr-03 23:57
kensai12-Apr-03 23:57 
GeneralRe: A simple property question Pin
Dave Kerr13-Apr-03 1:03
Dave Kerr13-Apr-03 1:03 
GeneralRe: A simple property question Pin
kensai14-Apr-03 9:50
kensai14-Apr-03 9:50 
GeneralRe: A simple property question Pin
Anonymous23-Apr-03 10:02
Anonymous23-Apr-03 10:02 
GeneralListview and database Pin
fredza12-Apr-03 21:48
fredza12-Apr-03 21:48 
GeneralRe: Listview and database Pin
Stephane Rodriguez.12-Apr-03 22:11
Stephane Rodriguez.12-Apr-03 22:11 
Generaluint.Parse() vs. Convert.ToUint32() Pin
moredip12-Apr-03 14:48
moredip12-Apr-03 14:48 
GeneralRe: uint.Parse() vs. Convert.ToUint32() Pin
Stephane Rodriguez.12-Apr-03 21:10
Stephane Rodriguez.12-Apr-03 21:10 
Convert.ToInt32 is actually based on ... Int32.Parse. Laugh | :laugh:

public static int Convert.ToInt32(string value) {
	if (value == null)
		return 0;
	return Int32.Parse(value);
}

GeneralRe: uint.Parse() vs. Convert.ToUint32() Pin
moredip13-Apr-03 0:38
moredip13-Apr-03 0:38 
GeneralRe: uint.Parse() vs. Convert.ToUint32() Pin
Stephane Rodriguez.13-Apr-03 1:15
Stephane Rodriguez.13-Apr-03 1:15 
GeneralRe: uint.Parse() vs. Convert.ToUint32() Pin
moredip13-Apr-03 1:23
moredip13-Apr-03 1:23 
GeneralRe: uint.Parse() vs. Convert.ToUint32() Pin
leppie13-Apr-03 3:00
leppie13-Apr-03 3:00 
GeneralRe: uint.Parse() vs. Convert.ToUint32() Pin
moredip13-Apr-03 3:01
moredip13-Apr-03 3:01 
GeneralTcpClient Problem Pin
Michal Januszczyk12-Apr-03 12:41
sussMichal Januszczyk12-Apr-03 12:41 
GeneralRe: TcpClient Problem Pin
Stephane Rodriguez.12-Apr-03 21:24
Stephane Rodriguez.12-Apr-03 21:24 
GeneralRe: TcpClient Problem Pin
Michal Januszczyk13-Apr-03 11:06
sussMichal Januszczyk13-Apr-03 11:06 
GeneralCharacter Codes Pin
J. Dunlap12-Apr-03 10:52
J. Dunlap12-Apr-03 10:52 
GeneralRe: Character Codes Pin
Stephane Rodriguez.12-Apr-03 21:08
Stephane Rodriguez.12-Apr-03 21:08 
Generalreading double encoded by php pack() problem Pin
Member 28242012-Apr-03 10:42
Member 28242012-Apr-03 10:42 
GeneralRe: reading double encoded by php pack() problem Pin
Stephane Rodriguez.12-Apr-03 20:56
Stephane Rodriguez.12-Apr-03 20:56 
GeneralExtended File Properties Pin
Querulant12-Apr-03 8:55
Querulant12-Apr-03 8:55 
GeneralRe: Extended File Properties Pin
Stephane Rodriguez.12-Apr-03 20:50
Stephane Rodriguez.12-Apr-03 20:50 
GeneralThanks Pin
Querulant13-Apr-03 3:44
Querulant13-Apr-03 3:44 
GeneralUsing windows api in C# Pin
rm_babar12-Apr-03 6:40
rm_babar12-Apr-03 6:40 
GeneralRe: Using windows api in C# Pin
Stephane Rodriguez.12-Apr-03 20:46
Stephane Rodriguez.12-Apr-03 20:46 

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.