本文整理汇总了C#中CustomList.IndexOf方法的典型用法代码示例。如果您正苦于以下问题:C# CustomList.IndexOf方法的具体用法?C# CustomList.IndexOf怎么用?C# CustomList.IndexOf使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CustomList
的用法示例。
在下文中一共展示了CustomList.IndexOf方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Main
static void Main()
{
var list = new CustomList<int>();
list.Add(-2);
list.Add(12);
list.Add(21);
list.Add(33);
Console.WriteLine(list.IndexOf(-2));
Console.WriteLine(list.IndexOf(12));
Console.WriteLine(list.IndexOf(21));
Console.WriteLine(list.IndexOf(-22));
Console.WriteLine(list);
list.Remove(12);
Console.WriteLine(list);
list.Add(5);
Console.WriteLine(list);
Console.WriteLine(list.Min());
Console.WriteLine(list.Max());
list[0] = 120;
Console.WriteLine(list);
Console.WriteLine(list[3]);
}
示例2: Main
static void Main()
{
try
{
CustomList<int> list = new CustomList<int>();
list.AddElement(1);
list.AddElement(2);
list.AddElement(3);
list.AddElement(4);
list.AddElement(5);
list.AddElement(6);
list.AddElement(6);
list.AddElement(6);
list.AddElement(6);
list.AddElement(6);
list.AddElement(6);
list.AddElement(15);
list.AddElement(6);
list.AddElement(6);
list.AddElement(6);
list.AddElement(6);
list.AddElement(6);
//list.AddElement(6);
Console.WriteLine(list.Min());
Console.WriteLine(list.Max());
Console.WriteLine(list.IndexOf(15));
}
catch (InvalidOperationException ioe)
{
Console.WriteLine(ioe.Message);
}
}
示例3: Main
static void Main()
{
var doubleList = new CustomList<double>();
doubleList.Add(5.5);
doubleList.Add(6.9);
doubleList.Add(6.4);
doubleList.Add(6.7);
doubleList.Add(5.6);
int count = doubleList.Count;
double max = doubleList.Max();
double min = doubleList.Min();
Console.WriteLine(doubleList);
Console.WriteLine("Max: {0}; Min: {1}; Count: {2}", max, min, count);
doubleList.Remove(6.4);
doubleList.Remove(5.5);
doubleList.RemoveAt(1);
count = doubleList.Count;
max = doubleList.Max();
min = doubleList.Min();
Console.WriteLine(doubleList);
Console.WriteLine("Max: {0}; Min: {1} Count: {2}", max, min, count);
doubleList.Clear();
bool isEmpty = doubleList.isEmpty;
Console.WriteLine(isEmpty);
Console.WriteLine(doubleList);
var stringList = new CustomList<string>();
stringList.Add("Kircho");
stringList.Add("Jecho");
stringList.Add("Mecho");
stringList.Add("Vulcho");
bool jecho = stringList.Contais("Jecho");
bool nencho = stringList.Contais("Nencho");
string who = stringList.ElementOf(0);
int index = stringList.IndexOf("Vulcho");
string maxString = stringList.Max();
Console.WriteLine(stringList);
Console.WriteLine("jecho: {0} \nnencho: {1} \nElement of 0 index: {2} \nIndex of Vulcho: {3} \nMax: {4}"
, jecho, nencho,who, index, maxString);
string indexer = stringList[3];
Console.WriteLine(indexer);
}
示例4: Main
static void Main()
{
//Displaying program version
var versionAttribute = typeof (CustomList<>).GetCustomAttributes(typeof (VersionAttribute), true);
Console.WriteLine("Program version: {0}v\n", versionAttribute[0]);
ComputerParts cpu = new ComputerParts("AMD Athlon II X3 3.20 Ghz", 90m);
ComputerParts ram = new ComputerParts("Kingston HyperX 4x2 GB", 130m);
ComputerParts motherboard = new ComputerParts("Asrock PRO X3", 50m);
ComputerParts dvd = new ComputerParts("DVD-ROM LG DH18NS60", 21m);
ComputerParts hdd = new ComputerParts("Samsung SSD 256 GB", 110m);
CustomList<ComputerParts> parts = new CustomList<ComputerParts>();
//Adding elements
parts.Add(cpu);
parts.Add(ram);
parts.Add(motherboard);
parts.Add(dvd);
Console.WriteLine(parts);
Console.WriteLine();
//Accessing element by index
Console.WriteLine(parts[2]);
Console.WriteLine();
//Removing element
parts.Remove(3);
Console.WriteLine(parts);
Console.WriteLine();
//Insert element
parts.Insert(hdd, 2);
Console.WriteLine(parts);
Console.WriteLine();
//Find element index by value
Console.WriteLine("Motherboard index is {0}", parts.IndexOf(motherboard));
Console.WriteLine();
//Check if the list contains a value
Console.WriteLine("Does the list contains HDD ? - {0}", parts.Contains(hdd));
Console.WriteLine();
//Cheking the minimum and maximum part by price
Console.WriteLine("The cheapest part is: {0}", parts.Min());
Console.WriteLine("The most expensive part is: {0}", parts.Max());
Console.WriteLine();
//Now we delete all the elements in the list
parts.Clear();
Console.WriteLine("We have a brand new list now :) {0}", parts);
}