C# Class Decision.Utility.PropertyInfoCache

Keeps a mapping between a string and a PropertyInfo instance. Simply wraps an IDictionary and exposes the relevant operations. Putting all this in a separate class makes the calling code more readable.
Exibir arquivo Open project: rabbal/Decision

Public Methods

Method Description
Add ( string key, PropertyInfo value ) : void
ContainsKey ( string key ) : bool
PropertyInfoCache ( ) : System
this ( string key ) : PropertyInfo

Method Details

Add() public method

public Add ( string key, PropertyInfo value ) : void
key string
value System.Reflection.PropertyInfo
return void

ContainsKey() public method

public ContainsKey ( string key ) : bool
key string
return bool

PropertyInfoCache() public method

public PropertyInfoCache ( ) : System
return System

this() public method

public this ( string key ) : PropertyInfo
key string
return System.Reflection.PropertyInfo