Hi, I was wondering if it is possible to add multiple generic constraints?
I have an Add method that takes an Object (Either Email, Phone or Address), so i was thinking something like:
public void Add<T>(T Obj)
where T : Address
where T : Email
where T : Phone
{
if (Obj is Address)
m_Address.Add(Obj as Address);
else if (Obj is Email)
m_Email.Add(Obj as Email);
else
m_Phone.Add(Obj as Phone);
}
But i keep getting "A constraint clause has already been specified for type parameter 'T'. All of the constraints for a type parameter must be specified in a single where clause."