C# 클래스 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.
파일 보기 프로젝트 열기: rabbal/Decision

공개 메소드들

메소드 설명
Add ( string key, PropertyInfo value ) : void
ContainsKey ( string key ) : bool
PropertyInfoCache ( ) : System
this ( string key ) : PropertyInfo

메소드 상세

Add() 공개 메소드

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

ContainsKey() 공개 메소드

public ContainsKey ( string key ) : bool
key string
리턴 bool

PropertyInfoCache() 공개 메소드

public PropertyInfoCache ( ) : System
리턴 System

this() 공개 메소드

public this ( string key ) : PropertyInfo
key string
리턴 System.Reflection.PropertyInfo