MsgBox amostra
Este exemplo demonstra como passar os tipos de seqüência por valor como parâmetros e quando usar o EntryPoint, CharSet, e ExactSpelling campos.
O exemplo de MsgBox usa a seguinte função não gerenciada, mostrada com sua declaração de função original:
MessageBox exportadas de User32. dll.
int MessageBox(HWND hWnd, LPCTSTR lpText, LPCTSTR lpCaption, UINT uType);
Neste exemplo, o LibWrap classe contém um protótipo de gerenciado para cada função não gerenciada, chamado pelo MsgBoxSample classe. Os métodos de protótipo gerenciado MsgBox, MsgBox2, e MsgBox3 ter declarações diferentes para a mesma função não gerenciada.
A declaração MsgBox2 produz saída incorreta na caixa de mensagem porque o tipo de caractere especificado como ANSI, que é incompatível com o ponto de entrada MessageBoxW, que é o nome da função Unicode. A declaração do MsgBox3 cria uma incompatibilidade entre o EntryPoint, CharSet, e ExactSpelling campos. Quando chamado, MsgBox3 lança uma exceção. Para obter informações detalhadas sobre a seqüência de caracteres de nomeação e empacotamento de nome, consulte especificando um conjunto de caracteres.
A declaração de protótipos
Public Class LibWrap
' Declares managed prototypes for unmanaged functions.
Declare Auto Function MsgBox Lib "User32.dll" Alias "MessageBox" ( _
ByVal hWnd As Integer, ByVal txt As String, ByVal caption As String, _
ByVal typ As Integer ) As Integer
' Causes incorrect output in the message window.
Declare Ansi Function MsgBox2 Lib "User32.dll" Alias "MessageBoxW" ( _
ByVal hWnd As Integer, ByVal txt As String, ByVal caption As String, _
ByVal type As Integer ) As Integer
' Causes an exception to be thrown.
' ExactSpelling is True by default in when
' Ansi or Unicode is used.
Declare Ansi Function MsgBox3 Lib "User32.dll" Alias "MessageBox" ( _
ByVal hWnd As Integer, ByVal txt As String, ByVal caption As String, _
ByVal typ As Integer ) As Integer
End Class
public class LibWrap
{
// Declares managed prototypes for unmanaged functions.
[DllImport( "User32.dll", EntryPoint="MessageBox",
CharSet=CharSet.Auto)]
public static extern int MsgBox(int hWnd, string text, string caption,
uint type);
// Causes incorrect output in the message window.
[DllImport( "User32.dll", EntryPoint="MessageBoxW",
CharSet=CharSet.Ansi )]
public static extern int MsgBox2(int hWnd, string text,
string caption, uint type);
// Causes an exception to be thrown. EntryPoint, CharSet, and
// ExactSpelling fields are mismatched.
[DllImport( "User32.dll", EntryPoint="MessageBox",
CharSet=CharSet.Ansi, ExactSpelling=true )]
public static extern int MsgBox3(int hWnd, string text,
string caption, uint type);
}
public ref class LibWrap
{
public:
// Declares managed prototypes for unmanaged functions.
[DllImport( "User32.dll", EntryPoint="MessageBox",
CharSet=CharSet::Auto)]
static int MsgBox(int hWnd, String^ text, String^ caption,
unsigned int type);
// Causes incorrect output in the message window.
[DllImport( "User32.dll", EntryPoint="MessageBoxW",
CharSet=CharSet::Ansi )]
static int MsgBox2(int hWnd, String^ text,
String^ caption, unsigned int type);
// Causes an exception to be thrown. EntryPoint, CharSet, and
// ExactSpelling fields are mismatched.
[DllImport( "User32.dll", EntryPoint="MessageBox",
CharSet=CharSet::Ansi, ExactSpelling=true )]
static int MsgBox3(int hWnd, String^ text,
String^ caption, unsigned int type);
};
Chamando funções
Public Class MsgBoxSample
Public Shared Sub Main()
LibWrap.MsgBox(0, "Correct text", "MsgBox Sample", 0)
LibWrap.MsgBox2(0, "Incorrect text", "MsgBox Sample", 0)
Try
LibWrap.MsgBox3(0, "No such function", "MsgBox Sample", 0)
Catch e As EntryPointNotFoundException
Console.WriteLine("EntryPointNotFoundException thrown as expected!")
End Try
End Sub
End Class
public class MsgBoxSample
{
public static void Main()
{
LibWrap.MsgBox(0, "Correct text", "MsgBox Sample", 0);
LibWrap.MsgBox2(0, "Incorrect text", "MsgBox Sample", 0);
try
{
LibWrap.MsgBox3(0, "No such function", "MsgBox Sample", 0);
}
catch(EntryPointNotFoundException)
{
Console.WriteLine("EntryPointNotFoundException thrown as expected!");
}
}
}
public class MsgBoxSample
{
public:
static void Main()
{
LibWrap::MsgBox(0, "Correct text", "MsgBox Sample", 0);
LibWrap::MsgBox2(0, "Incorrect text", "MsgBox Sample", 0);
try
{
LibWrap::MsgBox3(0, "No such function", "MsgBox Sample", 0);
}
catch (EntryPointNotFoundException^)
{
Console::WriteLine("EntryPointNotFoundException thrown as expected!");
}
}
};
Consulte também
Conceitos
Tipos de dados de invocação de plataforma
Padrão de empacotamento de Strings
A criação de protótipos em código gerenciado
Outros recursos
Specifying a Character Set