コード例 #1
0
ファイル: UsbDriveInfoLinux.cs プロジェクト: sillsdev/chack
 private static string TryGetDevicePropertyString(HalDevice device, string propertyName)
 {
     //if the property does not exist, we don't care
     try
     {
         return device.GetPropertyString(propertyName);
     }
     catch{}
     return String.Empty;
 }