using System; public class capiClient { public static void Main(string[] args) { item comment = new item(); comment.title="title"; comment.description="description"; CommentAPI service = new CommentAPI(); service.Url = "http://bitworking.org/5"; service.createComment(ref comment); System.Console.WriteLine(comment.link); } }