will this code works fine? or will it gives error? Object
obj=5; int i=6; i=i+obj;

Answer Posted / alb.shah

can not applied this because i is value type and obj is
reference type so this will create error
//u can do this
Object obj = 5;
int i = 6;
i = i + Convert.ToInt32(obj);

Is This Answer Correct ?    15 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are Master Pages in ASP.NET?

751


Define a static class?

707


What is a server farm in iis?

710


In a page I have gridview with options of select and delete using hyperlink when I am selecting any one of then it has to open another page how can it?

685


Can we have 2 web config files?

706


Explain the significance of routing? : asp.net mvc

758


How do u declare static variable and how it is declared and what is its lifetime?

718


If I am developing an application that must accomodate multiple security levels though secure login and my asp.net web application is spanned across three web-servers (using round-robin load balancing). What would be the best approach to maintain login-in state for the users?

825


In What Order Do The Events Of An Aspx Page Execute. As A Developer Is It Important To Undertsand These Events?

779


Which is better php or asp.net?

689


i want to implement grid view value in paypal site. so how to create this code in asp.net with C#

1699


What are custom user controls in asp.net?

720


Define what is razor? : asp.net mvc

742


What are the advantages and disadvantages of Using Cookies?

690


How to find out what version of asp.net I am using on my machine?

777