| PlatformCacheTKey, TValue Method  | 
 
            Gets a shared cache dictionary
            
 
    Namespace: 
   Eto
    Assembly:
   Eto (in Eto.dll) Version: 2.5.3-dev
 Syntax
Syntaxpublic Dictionary<TKey, TValue> Cache<TKey, TValue>(
	Object cacheKey
)
Public Function Cache(Of TKey, TValue) ( 
	cacheKey As Object
) As Dictionary(Of TKey, TValue)
member Cache : 
        cacheKey : Object -> Dictionary<'TKey, 'TValue> 
Parameters
- cacheKey
- Type: SystemObject
 Unique cache key to load the cache instance
Type Parameters
- TKey
- The type of the lookup key
- TValue
- The type of the lookup value
Return Value
Type: 
DictionaryTKey, 
TValue[Missing <returns> documentation for "M:Eto.Platform.Cache``2(System.Object)"]
 Remarks
Remarks
            This is used to cache things like brushes and pens, but can also be used to cache other things for your
            application's use.
            
 See Also
See Also