[]
public Comment Add(string text = null, string author = null)
| Type | Name | Description |
|---|---|---|
| string | text | The new comment text. |
| string | author | The new comment author. |
| Type | Description |
|---|---|
| Comment | The added Comment. |
Adds a Comment to this collection.
public Comment Add(string text, string author, DateTime date)
| Type | Name | Description |
|---|---|---|
| string | text | The new comment text. |
| string | author | The new comment author. |
| DateTime | date | The new comment date. |
| Type | Description |
|---|---|
| Comment | The added Comment. |
Adds a Comment to this collection.
public Comment Add(string text, string author, DateTime date, string initials)
| Type | Name | Description |
|---|---|---|
| string | text | The new comment text. |
| string | author | The new comment author. |
| DateTime | date | The new comment date. |
| string | initials | The new comment author initials. |
| Type | Description |
|---|---|
| Comment | The added Comment. |