我目前正在与TrelloNet合作开发我自己的 Trello 管理器应用程序。从下面显示的两条代码开始(“ xxxx ”是我自己的验证码和应用程序密钥,出于隐私目的而被屏蔽):
using System;
using TrelloNet;
class Program
{
static void Main(string[] args)
{
ITrello trello = new Trello("xxxx");
trello.Authorize("xxxx");
var myBoard = trello.Boards.Add("My Board");
}
}
此代码有效,成功添加了“我的董事会”板。但是第二个稍作修改的代码遇到了异常。
using System;
using TrelloNet;
class Program
{
static void Main(string[] args)
{
ITrello trello = new Trello("xxxx");
trello.Authorize("xxxx");
Member me = trello.Members.Me();
Console.WriteLine(me.FullName); //exception poped up here.
}
}
执行后,在该行弹出Console.WriteLine(me.FullName);
异常,异常为
NullReferenceException was unhandled
.An unhandled exception of type 'System.NullReferenceException' occurred in TrelloOrganizer.exe Additional information: Object reference not set to an instance of an object.
object trello确实是一个对象的实例,为什么我会得到这个异常?
谢谢