본문으로 건너뛰기

Delete

Overloads

NameDescription
Delete(int id, int commentId)삭제

Delete(int id, int commentId)

public void Delete(int id, int commentId)

삭제

Parameters

NameTypeDescription
idint리뷰 아이디(ID)
commentIdint주석 아이디(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
);
}