コード例 #1
0
ファイル: XamlConvertCache.cs プロジェクト: Egaros/lib
 public object Convert(Type targetType)
 {
     return(XamlStaticConverter.ConvertCache(ref _cacheStore, targetType));
 }
コード例 #2
0
ファイル: XamlConvertCache.cs プロジェクト: Egaros/lib
 public XamlConvertCache(object value, Type targetType)
 {
     _cacheStore = new ConvertCacheStore(value);
     XamlStaticConverter.ConvertCache(ref _cacheStore, targetType);
 }