How to convert a generic list to Outlook.Items list?

Joined
Apr 2, 2009
Messages
3
Reaction score
0
Hi,
I need to convert/cast a generic list containing TaskItems to an Outlook.Items list.

i tried this but it doesn't work:
ListTaskItem> lst = newListTaskItem>();
lst.Add(myTaskItem);
Outlook.Items outItems = (Outlook.Items)lst;

Can anyone please show me the direction?

thank you

 
Back
Top