TryGetValue() public method

public TryGetValue ( int index ) : object
index int
return 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));
 }