[]
public Comment Reply(string text, string author)
Public Function Reply(text As String, author As String) As Comment
Type | Description |
---|---|
Comment | The newly added reply. |
public Comment Reply(string text, string author, DateTime date)
Public Function Reply(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 newly added reply. |
public Comment Reply(string text, string author, DateTime date, string initials)
Public Function Reply(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 newly added reply. |