You need to sign in to do that
Don't have an account?

how to add two different List in one list
I want to add two list which differnet data into one list How is it possible please find the sceneario below
outer class is a
inner class : inner_a and inner_b
and a method
class a
{
class inner_a
{
}
class inner_b
{
list<inner_a> innera
}
Method(list<inner_b> innerb)
{
list<inner_a> some = new list<inner_a>();
some.add(innerb.innera); // this line is giving error ..concrete sobject
}
}
please suggest
Please check it out.
Thanks,
Samba