本文整理汇总了C#中GenericList.IndexOfElement方法的典型用法代码示例。如果您正苦于以下问题:C# GenericList.IndexOfElement方法的具体用法?C# GenericList.IndexOfElement怎么用?C# GenericList.IndexOfElement使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类GenericList
的用法示例。
在下文中一共展示了GenericList.IndexOfElement方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Main
static void Main()
{
//Create new list of strings and show functionality
GenericList<string> myList = new GenericList<string>(10);
myList[0] = "My";
myList[1] = "name";
myList[2] = "is";
myList[3] = "Svetlin";
myList[4] = "Nakov";
Console.WriteLine(myList);
myList.Add("I like beer!");
Console.WriteLine(myList[5]);
myList.RemoveByIndex(2); // remove 'is'
Console.WriteLine(myList[2]); //print 'Svetlin'
myList.Insert(2, "my name");
Console.WriteLine(myList[2]);
Console.WriteLine(myList.IndexOfElement("name",0)); // print '1'
Console.WriteLine();
Console.WriteLine(myList);
myList[7] = "aaa";
myList[8] = "bbb";
myList[9] = myList.Max(myList[7], myList[8]);
Console.WriteLine(myList[9]); //print 'bbb'
//Create new list of strings and show functionality
GenericList<int> otherList = new GenericList<int>(3);
Console.WriteLine(otherList[0]);
}
示例2: 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);
}