this property 를 활용한 key,value 접근 샘플
참고 : https://msdn.microsoft.com/en-us/library/6x16t2tx.aspxHttpRequest를 보면 분명 단일 클래스인데 배열로 접근? 하고 있지 않은가(예, Request["searchflag"]) 도대체 어떻게 하는거지 하고 찾아 봤더니 요런 방법으로 사용중이 었다.public T this[string key] 으로 선언하여 사용하면되겠다 Following is my slight variation on MSDN example:public class KeyValueIndexer { private Dictionary myVal = new Dictionary(); public V this[K k] { get { return myVal[k]; } set { myVal.Add..