コード例 #1
0
ファイル: NetworkTable.cs プロジェクト: 333fred/NetworkTables
 /// <summary>
 /// Checkts the table and tells if it contains the specified key.
 /// </summary>
 /// <param name="key">The key to be checked.</param>
 /// <returns>True if the table contains the key, otherwise false.</returns>
 public bool ContainsKey(string key)
 {
     return(NtCore.ContainsEntry(m_path + PathSeperatorChar + key));
 }