123 |
![]()

|
int i=123; int * p = &i; |
| Console.WriteLine(*p); |
/***********************************/
/*★ int 型のポインタ 前田 稔 ★*/
/***********************************/
using System;
class Pointer
{ unsafe public static void Main()
{
int i=123;
int * p = &i;
Console.WriteLine(*p);
Console.ReadLine();
}
}
|
C:\DATA\C#\CLI>csc /unsafe DotM.cs Dialog.cs |
//★ Dialog Class
class MyDialog : Form
{
・・・
}
|
MyDialog Mydlg = new MyDialog();
|
![]()