Delete
Overloads
| Name | Description |
|---|---|
| Delete(int id, int commentId) | 삭제 |
Delete(int id, int commentId)
public void Delete(int id, int commentId)
삭제
Parameters
| Name | Type | Description |
|---|---|---|
| id | int | 리뷰 아이디(ID) |
| commentId | int | 주석 아이디(ID) |
Examples
// VIZCore3D.NET Control
private VIZCore3D.NET.VIZCore3DControl vizcore3d;
private void Example()
{
int ReviewID = 1;
int CommentID = 3;
vizcore3d.Review.Comment.Delete(
ReviewID
, CommentID
);
}