
前田稔(Maeda Minoru)の超初心者のプログラム入門
![]()
![]()

using System;
using System.Collections.Generic;
using System.Text;
namespace Hello
{
public class Class1
{
public void MsgPrint()
{
Console.WriteLine("C# Hello DLL");
}
}
}
|
![]()
/************************************/
/*★ "C# Hello DLL" 前田 稔 ★*/
/************************************/
using System;
using Hello;
class Print
{
public static int Main()
{
Class1 cls = new Class1();
cls.MsgPrint();
Console.ReadLine();
return 0;
}
}
|

| C# Hello DLL |
![]()