.Net Framework 4.0的新用法

  • 1872
  • 0

摘要:.Net Framework 4.0的新用法

IntPtr新的用法,只有在4.0有效

 

using System;

public class Example
{
   public static void Main()
   {
      int[] arr = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
      IntPtr ptr = new IntPtr(arr[0]);
      for (int ctr = 0; ctr < arr.Length; ctr++)
      {
         IntPtr newPtr = IntPtr.Add(ptr, ctr);
         Console.Write("{0}   ", newPtr);
      }      
   }
}
// The example displays the following output:
//       1   2   3   4   5   6   7   8   9   10

============ 以下是簽名檔 ============

一個小小螺絲釘。

第一次建立Blog,希望以後能慢慢充實它。

Howard