如何编辑 Manatee.Trello 中的 Comment 值?
How to edit a Comment value in Manatee.Trello?
我有一条评论希望能够修改,但我不确定如何处理。
这是我到目前为止尝试过的方法:
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
能力。使用此库更新评论数据的正确方法是什么?
已更新!
action.Data.Text = "updated comment";
如果操作不是评论,您可能会从 Trello 收到错误消息。
我会在 wiki 中添加注释。我意识到它有点隐藏。
编辑...我猜是 2。
我最近发布了解决此错误的 Manatee.Trello v1.16.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
能力。使用此库更新评论数据的正确方法是什么?
已更新!
action.Data.Text = "updated comment";
如果操作不是评论,您可能会从 Trello 收到错误消息。
我会在 wiki 中添加注释。我意识到它有点隐藏。
编辑...我猜是 2。
我最近发布了解决此错误的 Manatee.Trello v1.16.0。如上所述使用它。