本文整理汇总了C#中GenericList.GetMax方法的典型用法代码示例。如果您正苦于以下问题:C# GenericList.GetMax方法的具体用法?C# GenericList.GetMax怎么用?C# GenericList.GetMax使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类GenericList
的用法示例。
在下文中一共展示了GenericList.GetMax方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Main
static void Main()
{
var test = new GenericList<int>(2);
for (int i = 0; i < 25; i++)
{
test.Add(i * 4);
}
Console.WriteLine(test);
test.Remove(5);
Console.WriteLine(test);
test.Insert(9, 77);
Console.WriteLine(test);
Console.WriteLine("ByValue: {0} ", test.FindIndexByValue(77));
Console.WriteLine("ByIndex: {0}", test[17]);
Console.WriteLine("Max: {0} ", test.GetMax());
Console.WriteLine("Min: {0}" , test.GetMin());
test.Clear();
}
示例2: TestGetMax
public void TestGetMax()
{
GenericList<int> numbers = new GenericList<int>();
numbers.Add(3);
numbers.Add(5);
numbers.Add(1);
numbers.Add(2);
numbers.Add(4);
int max = numbers.GetMax();
Assert.AreEqual(5, max);
}
示例3: Main
static void Main(string[] args)
{
// create an instance of the GenericList class;
GenericList<int> list = new GenericList<int>();
// add elements to the List using the method AddElement in GenericList class
list.AddElement(1);
list.AddElement(5);
list.AddElement(10);
list.AddElement(15);
list.AddElement(20);
//print the List - usint the overriden ToString() in GenericList class
Console.WriteLine("List elements are: ");
Console.WriteLine(list);
// access the element by given index using the method AccessElementAtPosition in GenericList class
int index = 2;
Console.Write("Element at index {0} is: ", index);
Console.WriteLine(list.AccessElementAtPosition(index));
Console.WriteLine();
// insert an element at given position
index = 0;
int num = 1000000000;
list[index] = num;
Console.WriteLine("Assign {0} to index {1}", num, index);
Console.WriteLine(list);
// add new element at given index
//all elements after the given index are replaced to the right
// the length of the array is increased by one
index = 2;
num = 22222;
list.AddElementAtIndex(num, index);
Console.WriteLine("Add new element with value {0} at index {1}", num, index);
Console.WriteLine("Note that all element after the given index are replaced to the right \nand the length of the array is increased by one.");
Console.WriteLine(list);
// remove the element at given index
// all elements after the given index are replaced to the left
// the length of the array is decreased by one
index = 3;
Console.WriteLine("Remove the element at index {0}", index);
Console.WriteLine("Note that all element after the given index are replaced to the left \nand the length of the array is decreased by one.");
list.RemoveElementAtIndex(3);
Console.WriteLine(list);
// find element by its value using the method IndexOfElement in GenericList
int elementValue = 5;
Console.Write("The index of element with value {0} is: ", elementValue);
Console.WriteLine(list.IndexOfElement(elementValue));
// gets the Minimal element of the list using the GetMin() method in the GenericList class
Console.Write("Minimal element of the array is: ");
Console.WriteLine(list.GetMin());
// gets the Maximal element of the list using the GetMax() method in the GenericList class
Console.Write("Maximal element of the array is: ");
Console.WriteLine(list.GetMax());
// clear the list and assing the default value of T type to each index
Console.WriteLine("Clear the list");
list.ClearAllElements();
Console.WriteLine(list);
}