Click here to Skip to main content
15,895,011 members
Home / Discussions / C#
   

C#

 
AnswerRe: Read Excel file properties. Pin
jdkulkarni25-Aug-05 20:48
jdkulkarni25-Aug-05 20:48 
QuestionMeasuring Delay Pin
Cheezo25-Aug-05 18:34
Cheezo25-Aug-05 18:34 
AnswerRe: Measuring Delay Pin
Dave Kreskowiak26-Aug-05 5:25
mveDave Kreskowiak26-Aug-05 5:25 
GeneralRe: Measuring Delay Pin
Cheezo28-Aug-05 20:11
Cheezo28-Aug-05 20:11 
GeneralRe: Measuring Delay Pin
Dave Kreskowiak29-Aug-05 1:27
mveDave Kreskowiak29-Aug-05 1:27 
Question: Some tough software challenges: A drawing borad in C# Application Pin
amitmohanty25-Aug-05 17:34
amitmohanty25-Aug-05 17:34 
Questionstring.Empty and null Pin
binglin25-Aug-05 15:59
binglin25-Aug-05 15:59 
AnswerRe: string.Empty and null Pin
Rob Graham25-Aug-05 16:21
Rob Graham25-Aug-05 16:21 
String.Empty is a defined value for a string instance of zero length, it is not null.
string a = null is an uninitialized object of type string, but since it is uninitialized, it is not valid to reference (cant't call any methods on it, or reference it without an exception being raised).
string a = null;
string b = string.Empty;
a.Compare(b); //raises null ref exception
b.Compare(a); //raises null reference exception
string c = "x";
c.Compare(a); // null reference
c.Compare(b); //valid statement

Absolute faith corrupts as absolutely as absolute power
Eric Hoffer

All that is necessary for the triumph of evil is that good men do nothing.
Edmund Burke

AnswerRe: string.Empty and null Pin
radic.feng26-Aug-05 1:10
radic.feng26-Aug-05 1:10 
GeneralRe: string.Empty and null Pin
Dave Kreskowiak26-Aug-05 1:48
mveDave Kreskowiak26-Aug-05 1:48 
GeneralRe: string.Empty and null Pin
Rob Graham26-Aug-05 4:49
Rob Graham26-Aug-05 4:49 
GeneralRe: string.Empty and null Pin
eggie526-Aug-05 7:17
eggie526-Aug-05 7:17 
AnswerRe: string.Empty and null Pin
eggie526-Aug-05 7:17
eggie526-Aug-05 7:17 
GeneralRe: string.Empty and null Pin
Rei Miyasaka29-Aug-05 13:22
Rei Miyasaka29-Aug-05 13:22 
AnswerRe: string.Empty and null Pin
radic.feng26-Aug-05 23:07
radic.feng26-Aug-05 23:07 
GeneralRe: string.Empty and null Pin
Uri Lavi27-Aug-05 1:13
Uri Lavi27-Aug-05 1:13 
GeneralRe: string.Empty and null Pin
radic.feng27-Aug-05 18:10
radic.feng27-Aug-05 18:10 
Questionparameterized query Pin
nidhelp25-Aug-05 15:11
nidhelp25-Aug-05 15:11 
AnswerRe: parameterized query Pin
jdkulkarni25-Aug-05 18:32
jdkulkarni25-Aug-05 18:32 
GeneralRe: parameterized query Pin
nidhelp25-Aug-05 18:53
nidhelp25-Aug-05 18:53 
GeneralRe: parameterized query Pin
jdkulkarni25-Aug-05 18:59
jdkulkarni25-Aug-05 18:59 
GeneralRe: parameterized query Pin
nidhelp25-Aug-05 19:20
nidhelp25-Aug-05 19:20 
GeneralRe: parameterized query Pin
jdkulkarni25-Aug-05 19:29
jdkulkarni25-Aug-05 19:29 
GeneralRe: parameterized query Pin
nidhelp25-Aug-05 19:40
nidhelp25-Aug-05 19:40 
GeneralRe: parameterized query Pin
jdkulkarni25-Aug-05 19:47
jdkulkarni25-Aug-05 19:47 

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.