随笔 - 97  文章 - 0  评论 - 69  阅读 - 25万

在C#中API函数的调用

using System;
using System.Runtime.InteropServices;

namespace ConsoleApplication1
{
 /// <summary>
 /// Class1 的摘要说明。
 /// </summary>
 class Class1
 {
  /// <summary>
  /// 应用程序的主入口点。
  /// </summary>
  ///
  [DllImport("User32.dll")]
  public static extern int MessageBox(int h,string m,string c,int type);

  [STAThread]
  static int Main()
  {
   //
   // TODO: 在此处添加代码以启动应用程序
   //
   string myString;
   Console.WriteLine("Enter your message:");
   myString=Console.ReadLine();
   return MessageBox(0,myString,"MyMessageBox",0);

  }
 }
}

posted on   感動常在  阅读(241)  评论(0编辑  收藏  举报
< 2006年8月 >
30 31 1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30 31 1 2
3 4 5 6 7 8 9

点击右上角即可分享
微信分享提示