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