What is a ICollection in C#?
private void SendEmail(string host, int port,
string username, string password,
string from, string to,
string subject, string body,
ICollection<string> attachedFiles)
|
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
The The An An |
||||
|
|
|
ICollection is a interface that represents a collection, it also contains strongly typed members Here is an example of how to implement that interface http://support.microsoft.com/kb/307484 The Generic List Implements this interface |
|||
|
|
|
A collection is a group of objects that have the same type (string in your example). From the documentation:
ICollection is the interface definition for a collection. |
|||
|
|
|
As an input paramter to that function, it could be any class that implements the ICollection interface. According to MSDN:
|
|||
|
|
|
I think what the OP is actually trying to understand, is what implements As Micah pointed out,
... and more Also, a plain ol' |
|||
|
|