What is difference between Convert.ToString(variable) and
variable.ToString()

Answers were Sorted based on User's Feedback



What is difference between Convert.ToString(variable) and variable.ToString()..

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

What is difference between Convert.ToString(variable) and variable.ToString()..

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

What is difference between Convert.ToString(variable) and variable.ToString()..

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

What is difference between Convert.ToString(variable) and variable.ToString()..

Answer / pavel

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

Post New Answer

More C Sharp Interview Questions

In dynamic link library, which api is used for load library?

0 Answers   C DAC,


Explain about generics in c#.net?

0 Answers  


What does char mean in c#?

0 Answers  


What is enumerable in c#?

0 Answers  


What happens if the inherited interfaces have conflicting method names?

0 Answers  


How can an inner class access the members of outer class?

0 Answers   Changepond,


What are concrete classes?

0 Answers  


Explain why do I get an error (cs1006) when trying to declare a method without specifying a return type?

0 Answers  


Explain lock, monitors, and mutex object in threading.

0 Answers  


What is Bubble Event ?

2 Answers   HCL,


What is difference between array and list in c#?

0 Answers  


How many types of methods are there in c#?

0 Answers  


Categories