HDLToolkit.Framework.Devices.DeviceManager.Load C# (CSharp) Method

Load() public method

public Load ( ) : void
return void
        public void Load()
        {
            if (AllowCaching && File.Exists(GetCacheFile()))
            {
                LoadFromCache();
            }
        }

Usage Example

Exemplo n.º 1
0
 public static DevicePartSpeed FindDeviceByName(string query)
 {
     // Load Device Manager
     DeviceManager manager = new DeviceManager();
     manager.Load();
     return FindDeviceByName(manager, query);
 }
All Usage Examples Of HDLToolkit.Framework.Devices.DeviceManager::Load