0

我有一条评论希望能够修改,但我不确定如何处理。

这是我迄今为止尝试过的:

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能力。使用此库更新评论数据的正确方法是什么?

4

1 回答 1

1

更新!

action.Data.Text = "updated comment";

如果操作不是评论,您可能会从 Trello 收到错误消息。

我将在 wiki 中添加注释。我意识到它有点隐藏。

编辑... 2,我猜。

我最近发布了解决此错误的 Manatee.Trello v1.16.0。如上所述使用它。

于 2017-02-20T04:01:58.117 回答