2. I've a class Parent Class A and a Derived Class B. Here
is a scenario.
I've an instance of Class A as objA and an instance of Class
B as objB.
I can refer a child class variable as objB=objA, but
cannot do objA=objB what is the reason?
Answers were Sorted based on User's Feedback
Answer / gopal
Here ObjA is Base Class and ObjB is Derived Class.
In Inheritence Process Derived class Will get the all
features of Base Class.
because objB=O=objA Is COrrect
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / ashok
Is this you are trying to do?
class A
{
public int MyName { get; set; }
}
class B : A
{
public int MyName1 { get; set; }
}
public class TestAB
{
public static void Test()
{
A objA = new A();
B objB = new B();
objB = (B)objA; // Unable to cast object of type
'AdvanceLib.A' to type 'AdvanceLib.B'.
objA = objB;
}
}
---
| Is This Answer Correct ? | 0 Yes | 0 No |
Define pipelining? : Dot net architecture
What is password attribute of the textbox control of .net mobile? : Microsoft dot net mobile
Will finally block exec if we write an return statement to a try block???????
What is MS chart control in visual studio?
Define cache? : Dot net architecture
What are the major differences between services and web services?
What re interop services?
What is the difference between Server.Transfer and Response.Redirect? Why would I choose one over the other?
How to upload in video,mp4,in .net 4.5 ..?
what is a required field validation control?
Which software is used for .net programming?
What is the numeric attribute of the textbox control in .net mobile? : Microsoft dot net mobile