前田稔(Maeda Minoru)の超初心者のプログラム入門
![]()
![]()
/*★ C# から HelloMsg() を呼び出す 前田 稔 ★*/
//Console.cs
using System;
using System.Collections.Generic;
using System.Runtime.InteropServices;
using System.Text;
class console
{
[DllImport("Dll.dll")]
static extern void HelloMsg();
public static int Main()
{
HelloMsg();
Console.ReadLine();
return 0;
}
}
|

![]()