Skip to content

Instantly share code, notes, and snippets.

@ufcpp
ufcpp / PointerInternal.cs
Created April 17, 2018 03:01
C# のポインターがらみ
using System;
using System.Runtime.CompilerServices;
using static System.Console;
unsafe class Program
{
static void Main()
{
PointerToX();
PointerToArray();