连接到MsSql时抛出Null Reference Exception

时间:2013-11-06 10:50:37

标签: c#

using MERCURY.Database;

namespace MERCURY.Service {
    public class CommonWindowsService : ServiceBase {
        internal static MercuryDatabase Database;
.
.
Database = new MercuryDatabase(Settings.Default.MercuryDatabase);

在同一名称空间中我试图称之为:

CommonWindowsService.Database.CbWorkerStart(_updateThread.ManagedThreadId, _updateThread.Name);

但是,它会在CommonWindowsService.Database中抛出空引用异常。 为什么?

0 个答案:

没有答案