摘要:
深入非安全代码 编写非安全代码需要使用特殊的关键字unsafe与fixed。如果你还记得的话,有三种指针操作符: * & -> 任何使用了上述任一指针操作符的语句、语句块或者函数都应用unsafe关键字标记为非安全代码,就象这样: public unsafe void Triple(int *pInt){ *pInt=(*pInt)*3;... 阅读全文
摘要:
traceback:http://www.cnblogs.com/f4f16/archive/2006/09/18/507082.htmlVisual Studio (1)C#: using System;using System.Collections.Generic;using System.Text;namespace ClassLibrary1{ public class Class... 阅读全文