P
Peter Wullems
I am trying to convert some code from VB to C# where VB.NET allows the
following:
MailItem.Attachments.Add(filename)
In the same situation C# appears to look for the following:
MailItem.Attachments.Add(object Source, object Type, object Position, object
DisplayName);
What should I supply to the parameters?
thanks
Peter
following:
MailItem.Attachments.Add(filename)
In the same situation C# appears to look for the following:
MailItem.Attachments.Add(object Source, object Type, object Position, object
DisplayName);
What should I supply to the parameters?
thanks
Peter