我有一条评论希望能够修改,但我不确定如何处理。
这是我迄今为止尝试过的:
using Manatee.Trello;
public class MyClass
{
//identification is done beforehand as per Manatee.Trello's wiki
Card c = new Card(existingCardID);
foreach(Action comment in card.Comments)
{
comment.Data.Value="empty comment";
}
}
但是,Action.Data.Value
只有get
能力。使用此库更新评论数据的正确方法是什么?