可以,用 unsafe.用的时候记得在项目属性(Properties)->生成(Build)->常规(General)中钩上允许不安全代码 (Allow unsafe code).否则会出现这个错误:Unsafe code may only appear if compiling with /unsafe. // compile with: /unsafe using System;class UnsafeTest{ // Unsafe method: takes pointer to int…
配置好linux系统之后需要vim配置一下,有助于我们的编程,主要的配置如下 在/etc/vim/vimrc文件中 "显示行号 set number "自动缩进 set autoindent "智能缩进 set smartindent "一次四格 tab set tabstop=4 "一次四格 set shiftwidth=4 "括号匹配 set showmatch "右下角显示光标状态行 set ruler "文件类型检测…