TryGetValue() 공개 메소드

public TryGetValue ( int index ) : object
index int
리턴 object
예제 #1
0
 public object GetObject(int udata)
 {
     return(objects.TryGetValue(udata));
 }
예제 #2
0
 public T GetObject <T>(int udata)
 {
     return(objects.TryGetValue <T>(udata));
 }