本文整理汇总了C#中HashTable.Get方法的典型用法代码示例。如果您正苦于以下问题:C# HashTable.Get方法的具体用法?C# HashTable.Get怎么用?C# HashTable.Get使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类HashTable
的用法示例。
在下文中一共展示了HashTable.Get方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Add_Get
public void Add_Get()
{
HashTable<int, string> table = new HashTable<int, string>();
table.Add(1, "Hello ");
table.Add(2, "to ");
table.Add(3, "Everyone");
string result = table.Get(1) + table.Get(2) + table.Get(3);
Assert.AreEqual("Hello to Everyone", result);
}
示例2: Get_NonExistingElement_ShouldThrowException
public void Get_NonExistingElement_ShouldThrowException()
{
// Arrange
var hashTable = new HashTable<int, string>();
// Act
hashTable.Get(12345);
}
示例3: Get_ExistingElement_ShouldReturnTheValue
public void Get_ExistingElement_ShouldReturnTheValue()
{
// Arrange
var hashTable = new HashTable<int, string>();
// Act
hashTable.Add(555, "Peter");
var actualValue = hashTable.Get(555);
// Assert
Assert.AreEqual("Peter", actualValue);
}