当前位置: 首页>>代码示例>>C#>>正文


C# CustomList.RemoveAt方法代码示例

本文整理汇总了C#中CustomList.RemoveAt方法的典型用法代码示例。如果您正苦于以下问题:C# CustomList.RemoveAt方法的具体用法?C# CustomList.RemoveAt怎么用?C# CustomList.RemoveAt使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在CustomList的用法示例。


在下文中一共展示了CustomList.RemoveAt方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: 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);
    }
开发者ID:alvelchev,项目名称:SoftUni,代码行数:54,代码来源:TestCustomList.cs


注:本文中的CustomList.RemoveAt方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。