what is the diference between casting and converting?

Answers were Sorted based on User's Feedback



what is the diference between casting and converting?..

Answer / kiran vaidya

When you use Convert class, you have some predefined types
which are defined by .Net framework such as Convert.ToInt32
or Convert.ToString and so on. That means you can convert
whatever you want to only system defined types.

while in casting, you can have your own choices to convert
data. i.e. user defined types.

for eg. you have a class called Employee and you want to
convert some object to Employee, then the best way to do
this is casting.

Is This Answer Correct ?    10 Yes 0 No

what is the diference between casting and converting?..

Answer / praveen

The Convert.ToInt32(String, IFormatProvider) underneath
calls the Int32.Parse. So the only difference is that if a
null string is passed to Convert it returns 0, whereas
Int32.Parse throws an ArgumentNullException.

It is really a matter of choice whichever you use.

Also have a look at the new .NET 2.0 method Int32.TryParse,
which attempts to convert a string to an int without
throwing an exception.

Is This Answer Correct ?    8 Yes 0 No

Post New Answer

More C Sharp Interview Questions

Is it possible to add two 50 digit numbers in .net? If yes what is the code snippet?

2 Answers   Cognizant, W3 Solutions, Zefer,


Define property in c#.net?

0 Answers  


Is multiple inheritance possible in c#?

0 Answers  


What is Interface? Explain with an example.

8 Answers   TCS,


What .exe means?

0 Answers  






What is primitive types in c#?

0 Answers  


What is nameof c#?

0 Answers  


What are Types of assemblies that can be created in dotnet

0 Answers  


What is difference between list and dictionary in c#?

0 Answers  


What is the difference between TypeOf, GetType and what are the uses of TypeOf, GetType.

2 Answers   Siemens, Syntel,


write the Syntax for Function or Method Overriding?

5 Answers   HCL,


What are the 3 different types of arrays?

0 Answers  


Categories