I know how to use MailAddress like this:
new MailAddress("[email protected]")
But what is this I'm seeing:
new MailAddress[0] - how is this used and when is it ok to use? I don't see anything about this in the docs on MSDN.
I know how to use MailAddress like this:
new MailAddress("[email protected]")
But what is this I'm seeing:
new MailAddress[0] - how is this used and when is it ok to use? I don't see anything about this in the docs on MSDN.
Copyright © 2021 Jogjafile Inc.
After all the comments above.... the main difference is
mA object is initialized by calling default constructor.
In this case, no object is initialized, it is just declaration of array of objects. No constructor calls.