Add
Overloads
| Name | Description |
|---|---|
| Add(int id, string title, string comments, string author) | 추가 |
Add(int id, string title, string comments, string author)
public int Add(int id, string title, string comments, string author)
추가
Parameters
| Name | Type | Description |
|---|---|---|
| id | int | 리뷰 아이디(ID) |
| title | string | 제목 |
| comments | string | 주석 |
| author | string | 저자 |
Returns
| Type | Description |
|---|---|
| int | 주석 아이디(ID) |
Examples
// VIZCore3D.NET Control
private VIZCore3D.NET.VIZCore3DControl vizcore3d;
private void Example()
{
int ReviewID = 1;
int CommentID = vizcore3d.Review.Comment.Add(
ReviewID
, "Title..."
, "Comment..."
, "Author..."
);
}