ContactCollectionAdd(ValueTupleString, String) Method
Add one or more contacts using a simple tuple approach.
Namespace: ProjectTaskAssembly: ProjectTask (in ProjectTask.dll) Version: 25.2814.3647
public List<ContactItem> Add(
params (string , string )[] entries
)
Public Function Add (
ParamArray entries As ( As String, As String)()
) As List(Of ContactItem)
No code example is currently available or this language may not be supported.
- entries ValueTupleString, String
-
One or more displayName, emailAddress tuples.
ListContactItem
Reference to a list of items that have been added to the collection.
To use this method, call it similarly to:
project.Contacts.Add(
("Pickle Featherstone",
"pickle.featherstone@quirkymail.com"),
("Sassy Bumbleshoe",
"sassy.bumbleshoe@buzzmail.io"));