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


C# Deque.CopyTo方法代码示例

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


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

示例1: CopyConstructorPUT

        public void CopyConstructorPUT(int[] input)
        {
            Deque<int> actual = new Deque<int>(input);
            int[] output = new int[input.Length];
            actual.CopyTo(output, 0);

            CollectionAssert.AreEqual(input, output);
        }
开发者ID:taoxiease,项目名称:asegrp,代码行数:8,代码来源:DequeTest.cs

示例2: ExceptionNotEnoughSpaceFromIndex

        public void ExceptionNotEnoughSpaceFromIndex()
        {
            var deque = new Deque<int>();
            deque.EnqueueHead(5);
            deque.EnqueueTail(3);
            deque.EnqueueTail(2);
            deque.EnqueueHead(55);

            var array = new int[4];
            deque.CopyTo(array, 1);
        }
开发者ID:havok,项目名称:ngenerics,代码行数:11,代码来源:CopyTo.cs

示例3: ExceptionArrayTooSmall

        public void ExceptionArrayTooSmall()
        {
            var deque = new Deque<int>();
            deque.EnqueueHead(5);
            deque.EnqueueTail(3);
            deque.EnqueueTail(2);
            deque.EnqueueHead(55);

            var array = new int[3];
            deque.CopyTo(array, 0);
        }
开发者ID:havok,项目名称:ngenerics,代码行数:11,代码来源:CopyTo.cs

示例4: ExceptionInvalidArray2

        public void ExceptionInvalidArray2()
        {
            var deque = new Deque<int>();

            for (var i = 1; i < 20; i++)
            {
                deque.EnqueueHead(i);
            }

            var array = new int[18];

            deque.CopyTo(array, 0);
        }
开发者ID:havok,项目名称:ngenerics,代码行数:13,代码来源:CopyTo.cs

示例5: CopyToExample

        public void CopyToExample()
        {
            var deque = new Deque<string>();
            deque.EnqueueHead("cat");
            deque.EnqueueHead("dog");
            deque.EnqueueHead("canary");
            deque.EnqueueHead("canary");

            // create new string array
            // note that the count is 4 because "canary" will exists twice.
            var stringArray = new string[4];
            deque.CopyTo(stringArray, 0);
        }
开发者ID:GTuritto,项目名称:ngenerics,代码行数:13,代码来源:DequeExamples.cs

示例6: TestCopyTo

        private static void TestCopyTo(Deque deque)
        {
            deque.Clear();

            PopulateDequePushBack(deque);

            int[] array = new int[deque.Count];

            deque.CopyTo(array, 0);

            foreach(int i in deque)
            {
                System.Diagnostics.Debug.Assert(array[i] == i);
            }

            array = new int[deque.Count * 2];

            deque.CopyTo(array, deque.Count);

            foreach(int i in deque)
            {
                System.Diagnostics.Debug.Assert(array[i + deque.Count] == i);
            }

            array = new int[deque.Count];

            try
            {
                deque.CopyTo(null, deque.Count);

                UnityEngine.Debug.LogError("Exception failed");
            }
            catch(Exception ex)
            {
                Console.WriteLine(ex.Message);
            }

            try
            {
                deque.CopyTo(array, -1);

                UnityEngine.Debug.LogError("Exception failed");
            }
            catch(Exception ex)
            {
                Console.WriteLine(ex.Message);
            }

            try
            {
                deque.CopyTo(array, deque.Count / 2);

                UnityEngine.Debug.LogError("Exception failed");
            }
            catch(Exception ex)
            {
                Console.WriteLine(ex.Message);
            }

            try
            {
                deque.CopyTo(array, deque.Count);

                UnityEngine.Debug.LogError("Exception failed");
            }
            catch(Exception ex)
            {
                Console.WriteLine(ex.Message);
            }

            try
            {
                deque.CopyTo(new int[10, 10], deque.Count);

                UnityEngine.Debug.LogError("Exception failed");
            }
            catch(Exception ex)
            {
                Console.WriteLine(ex.Message);
            }
        }
开发者ID:jordanajlouni,项目名称:ProjectAccountingSoftware,代码行数:81,代码来源:Tester.cs

示例7: Simple

        public void Simple()
        {
            var dequeeque = new Deque<int>();

            for (var i = 1; i < 20; i++)
            {
                dequeeque.EnqueueHead(i);
            }

            var array = new int[19];

            dequeeque.CopyTo(array, 0);

            var counter = 1;

            for (var i = 18; i > 0; i--)
            {
                Assert.AreEqual(array[i], counter);
                counter++;
            }
        }
开发者ID:havok,项目名称:ngenerics,代码行数:21,代码来源:CopyTo.cs

示例8: ExceptionNullArray

 public void ExceptionNullArray()
 {
     var deque = new Deque<int>();
     deque.CopyTo(null, 0);
 }
开发者ID:havok,项目名称:ngenerics,代码行数:5,代码来源:CopyTo.cs


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