Wrox Programmer Forums
|
BOOK: Beginning Visual C# 2005
This is the forum to discuss the Wrox book Beginning Visual C# 2005 by Karli Watson, Christian Nagel, Jacob Hammer Pedersen, Jon D. Reid, Morgan Skinner, Eric White; ISBN: 9780764578472
Welcome to the p2p.wrox.com Forums.

You are currently viewing the BOOK: Beginning Visual C# 2005 section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old May 11th, 2007, 05:25 AM
Registered User
 
Join Date: May 2007
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
Default casting data type

Hi

Could anyone help to explain to me the following question. If I have an object and I want to cast it to string type. What is the different between these 2 codes:

         string temp = (string)anObj;
                    VS
         string temp = anObj.ToString();

 
Old June 7th, 2007, 03:31 PM
Authorized User
 
Join Date: Apr 2007
Posts: 28
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via AIM to Larryz
Default

OK here is my answer, it wont be as exact but its my stab at it..


string temp = (string)anOBj;

This one uses a explict type conversion called a cast to convert the object into a string..

temp will point to a string object....

second one

string temp = anObj.ToString();
here you are calling the ToString method, which is inherited....
it will force the object anOBj to be described as a sting.. that will be set to temp..... this doesnt create a refernce pointer to it.... as far as i knows... ofcourse i am looking for corrections here ....

Larry.






Similar Threads
Thread Thread Starter Forum Replies Last Post
Type Casting in VBA miriv365 Access VBA 5 April 13th, 2012 01:43 PM
data type kfir XML 6 May 7th, 2006 07:15 AM
Type Casting in VBA miriv365 VB.NET 0 February 14th, 2005 01:07 PM
casting textbox to sqlserver number data type yoord BOOK: Beginning ASP.NET 1.0 1 October 17th, 2004 06:09 AM
Data Type error but it is the correct type Mitch SQL Server 2000 2 March 19th, 2004 11:31 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.