标题:[转载]C#2.0-extern
只看楼主
slcfhr
Rank: 1
等 级:新手上路
帖 子:125
专家分:0
注 册:2006-6-16
 问题点数:0 回复次数:0 
[转载]C#2.0-extern

extern 修饰符用于声明在外部实现的方法。extern 关键字常用于定义外部程序集别名,使得可以从单个程序集中引用同一组件的不同版本。
  extern 修饰符的常见用法是在使用 Interop 服务调入非托管代码时与 DllImport 属性一起使用;在这种情况下,该方法还必须声明为 static。如:

[DllImport("avifil32.dll")]
private static extern void AVIFileInit();
在该示例中,程序接收来自用户的字符串并将该字符串显示在消息框中。程序使用从 User32.dll 库导入的 MessageBox 方法。using System;
using System.Runtime.InteropServices;
class MainClass
{
[DllImport("User32.dll")]
public static extern int MessageBox(int h, string m, string c, int type);

static int Main()
{
string myString;
Console.Write("Enter your message: ");
myString = Console.ReadLine();
return MessageBox(0, myString, "My Message Box", 0);
}
}

搜索更多相关主题的帖子: 关键字 字符串 用户 
2006-07-01 23:34



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-76123-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.241082 second(s), 7 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved