본문으로 건너뛰기

Update

Overloads

NameDescription
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

NameTypeDescription
idint리뷰 아이디(ID)
commentIdint주석 아이디(ID)
titlestring제목
commentsstring주석 내용
authorstring주석 저자

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..."
);
}