示例#1
0
 public int[] getExchangeTime(int sid)
 {
     if (exchangeTime == null)
     {
         return(null);
     }
     return(exchangeTime.get(sid) as int[]);
 }
示例#2
0
 /// <summary>
 /// Gets the token value for the given token id.
 /// </summary>
 /// <param name="id">The token id.</param>
 /// <returns>
 /// The token value for the given token id;
 /// <c>null</c> if there is no such token value.
 /// </returns>
 public static string GetTokenValueForId(int id)
 {
     return(m_TokenIdentifierMap.get(id) as string);
 }
 public object getActiveInfoBySid(int activeID)
 {
     return(activeInfo.get(activeID));
 }