在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
【C#笔记】sizeof() 今天写程序时要用到sizeof
1 using System;
2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 namespace test 6 { 7 class Program 8 { 9 static void Main(string[] args) 10 { 11 int val = 8; 12 //Console.WriteLine(sizeof(val)); //这个会报错。 13 Console.WriteLine(sizeof(int)); //这个正常,跟c里的一样 14 15 Console.WriteLine(System.Runtime.InteropServices.Marshal.SizeOf(val)); //这个能正常输出,查文档得到。 16 //Console.WriteLine(System.Runtime.InteropServices.Marshal.SizeOf(int));//这个会报错。 17 Console.ReadKey(); 18 } 19 } 20 }
从上面这个程序来看,
2009-12-26 11:46:50 |
请发表评论