dillenmeister / Trello.NET

A .NET client library for Trello
192 stars 85 forks source link

Copy a card using TrelloNet #64

Open dankiest opened 9 years ago

dankiest commented 9 years ago

I've tried to copy a card from a list to another using the TrelloNet DLL, but i fink i did not do this in the best way that i can, so i want to know how i can do this?

Obs.: I tried to do this creating a card and simply creating another and attributing he to other card and putting the new card in another list.

Card card1 = new Card("Card1",MyList);

Card card2 = card1;