本文整理汇总了C#中CustomList.Insert方法的典型用法代码示例。如果您正苦于以下问题:C# CustomList.Insert方法的具体用法?C# CustomList.Insert怎么用?C# CustomList.Insert使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CustomList
的用法示例。
在下文中一共展示了CustomList.Insert方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: 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);
}
示例2: Main
static void Main(string[] args)
{
CustomList<int> list = new CustomList<int>(3);
list.Add(1);
list.Add(2);
list.Add(3);
list.Add(4);
list.Insert(1, 40);
Console.WriteLine(list.Count);
Console.WriteLine(list);
System.Reflection.MemberInfo info = typeof(CustomList<>);
foreach (object attribute in info.GetCustomAttributes(false))
{
Console.WriteLine(attribute);
}
}