[]
public Comment Add(string text = null, string author = null)
Public Function Add(Optional text As String = Nothing, Optional author As String = Nothing) As Comment
| 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)
Public Function Add(text As String, author As String, [date] As Date) As Comment
| 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)
Public Function Add(text As String, author As String, [date] As Date, initials As String) As Comment
| 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. |