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



2. I've a class Parent Class A and a Derived Class B. Here is a scenario. I've an instan..

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

2. I've a class Parent Class A and a Derived Class B. Here is a scenario. I've an instan..

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

Post New Answer

More Dot Net AllOther Interview Questions

What is different about namespace declaration when comparing that to package declaration in java?

0 Answers  


How resource files are used in .net?

0 Answers  


Explain about validation?

0 Answers  


How do I stop a thread?

0 Answers  


What is an asssembly qualified name? Is it a filename? How is it different?

0 Answers  






Explain the purpose of cache? How is it used? : .NET Architecture

0 Answers  


What is password attribute of the textbox control of .net mobile? : Microsoft dot net mobile

0 Answers  


Explain difference between machine config vs. Web config? : .NET Architecture

0 Answers  


Explain the components required to develop mobile applications with .net mobile? : Microsoft dot net mobile

0 Answers  


Name some changes done since version 3.0?

0 Answers  


Can you explain scriptmanager control?

0 Answers  


What should one do to make class serializable?

1 Answers  


Categories