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
What are Master Pages in ASP.NET?
Define a static class?
What is a server farm in iis?
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?
Can we have 2 web config files?
Explain the significance of routing? : asp.net mvc
How do u declare static variable and how it is declared and what is its lifetime?
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?
In What Order Do The Events Of An Aspx Page Execute. As A Developer Is It Important To Undertsand These Events?
Which is better php or asp.net?
i want to implement grid view value in paypal site. so how to create this code in asp.net with C#
What are custom user controls in asp.net?
Define what is razor? : asp.net mvc
What are the advantages and disadvantages of Using Cookies?
How to find out what version of asp.net I am using on my machine?