阅读量:0
在C#中使用extern关键字可以在函数体内声明外部方法或函数。在多线程中使用extern关键字可以调用其他语言的函数或方法,例如C++或C。
以下是一个示例,展示如何在C#中使用extern关键字调用一个C++函数:
using System; using System.Runtime.InteropServices; class Program { [DllImport("mylibrary.dll")] public static extern void MyFunction(); static void Main() { // 创建一个线程来调用外部函数 System.Threading.Thread thread = new System.Threading.Thread(() => { MyFunction(); }); thread.Start(); thread.Join(); Console.WriteLine("External function called from another thread."); } }
在上面的示例中,MyFunction()是一个C++函数,通过extern关键字声明在C#中。然后在一个新的线程中调用这个函数。