コード例 #1
0
ファイル: OCRSettings.cs プロジェクト: john-guo/hodgepodge
 private IOCR GetOCR(OCRType type)
 {
     IOCR ocr = null;
     _cache.TryGetValue(type, out ocr);
     return ocr;
 }
コード例 #2
0
ファイル: OCRSettings.cs プロジェクト: john-guo/hodgepodge
 public bool IsEnable(OCRType type)
 {
     return GetOCR(type).IsEnable;
 }