How do I fix this function so that I can input a List of any class
private static List<Type> CopyObjList(List<Type> Group, List<Type> AddGroup)
{
foreach (Type obj in AddGroup)
Group.Add(obj);
return Group;
}
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Generics and AddRange
Return type is not mendatory since List is a reference type.
Have a nice day