-1

在我的解决方案资源管理器中,我有一个用于 Windows 服务BridgeWS 的项目,另一个项目Vytru.Platform.Bridge.Configuration有一个静态类SharedData.cs

我的问题:我想使用这个静态属性SharedData.DeviceList来获取我在 BridgeWS服务中的设备对象列表,但它总是等于 null 吗?

这是我的解决方案

在此处输入图像描述

我的静态类中的一些代码

public static  class SharedData
    {
        public const string CONFIGURATION_XML_PATH = @"\Configuration.xml";
        private static List<Device> _deviceList;

        public static void Initialize()
        {
            APPLICATION_LOCAL_PATH = Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().Location);
            if (!string.IsNullOrEmpty(APPLICATION_LOCAL_PATH)) CONFIGURATION_FULL_PATH = APPLICATION_LOCAL_PATH + CONFIGURATION_XML_PATH;

            _deviceList = new List<Device>();
            _tempDeviceList = new List<Device>();
            _deviceAgent = new DeviceManager();
            _deviceAgent.Initialize();
        }           


        public static bool AddToTempDeviceList(Device device)
        {
            if (_tempDeviceList != null)
            {
                if (!_deviceAgent.IsExist(device, true))
                {
                    _tempDeviceList.Add(device);
                    return true;
                }
            }
            return false;
        }

        public static bool UpdateFile()
        {
            _deviceList = _tempDeviceList;
            return _deviceAgent.Save();
        }

          public static List<Device> DeviceList
        {
            get { return _deviceList; }
            set { _deviceList = value; }
        }

        public static List<Device> TempDeviceList
        {
            get { return _tempDeviceList; }
            set { _tempDeviceList = value; }
        }

        public static DeviceManager DeviceAgent
        {
            get { return _deviceAgent; }
            set { _deviceAgent = value; }
        }
    }

感谢和抱歉我的英语不好。

4

1 回答 1

1

您可以先调用 Initialize 方法。如果你不这样做,属性将为空,因为这部分代码

_deviceList = new List<Device>();
            _tempDeviceList = new List<Device>();
            _deviceAgent = new DeviceManager();
            _deviceAgent.Initialize();

在 BridgeWS 中

SharedData.Initialize();
SharedData.TempDeviceList; // not null
SharedData.DeviceList; // not null
于 2012-07-04T20:57:02.177 回答