What is difference between Convert.ToString(variable) and
variable.ToString()
Answers were Sorted based on User's Feedback
Answer / hima sijo
convert.tostring handles Null value also where
Variable.tostring wont handle null value.It throw exception
Is This Answer Correct ? | 8 Yes | 0 No |
Answer / abdul
Convert.ToString handles null where as simple
variable.ToString() doesn;t;
But Convert class is an optimization cost, when we use
inside any loop, need to minimize it
Sample ToString();
Will Work
int salary = 10000;
string oldSalary = salary.tostring();
Will Throw exeption
int salary = null;
string oldSalary = salary.tostring(); ---> throws exception
Sample Convert.ToString()
Will Work
int salary = 10000;
string oldSalary = Convert.ToString(salary);
Will Work
int salary = null;
string oldSalary = Convert.ToString(salary); null will return
Is This Answer Correct ? | 13 Yes | 7 No |
Answer / sanjib ghosh
Dim salary As Int16
Dim oldSalary As String = salary.ToString()
Dim newSalary As String = Convert.ToString(salary)
MsgBox(oldSalary & "")
MsgBox(newSalary & "")
''No exception throw
both work same function
Is This Answer Correct ? | 0 Yes | 0 No |
object ss =null;
string s1 = ss.ToString(); ---------- exeption
string s2 = Convert.ToString(ss); --- ""
--------------------
int ss =null; --- int can't be converted to null
--------------------
int ss = 1;
string s1 = ss.ToString(); ---------- "1"
string s2 = Convert.ToString(ss); --- "1"
Is This Answer Correct ? | 0 Yes | 2 No |
how can include .netframeworl 2.0 in application setup
the c# keyword .int. Maps to which .net type?
can we throw execption from catchblock
What is difference between continue and break in c#?
What is the difference between String s(Small s) and String S(Capital S)?
Explain the differences between static, void and public in c#?
What are native functions?
Explain the feature of c# language?
What is sqldatareader c#?
Tell us something about static linking and dynamic linking?
How to Show Message box in Metro Style App?
What does || mean in programming?