|
Dieser Artikel wurde maschinell übersetzt. Bewegen Sie den Mauszeiger über die Sätze im Artikel, um den Originaltext anzuzeigen. Weitere Informationen
|
Übersetzung
Original
|
InAttribute-Klasse
Namespace: System.Runtime.InteropServices
Assembly: mscorlib (in mscorlib.dll)
Der InAttribute-Typ macht die folgenden Member verfügbar.
| Name | Beschreibung | |
|---|---|---|
![]() | TypeId |
| Name | Beschreibung | |
|---|---|---|
![]() ![]() ![]() ![]() | Equals | Infrastruktur. |
![]() ![]() ![]() ![]() | GetHashCode | |
![]() ![]() ![]() ![]() | GetType | |
![]() | IsDefaultAttribute | |
![]() ![]() | Match | |
![]() ![]() ![]() ![]() | ToString |
| Name | Beschreibung | |
|---|---|---|
![]() ![]() | _Attribute.GetIDsOfNames | |
![]() ![]() | _Attribute.GetTypeInfo | |
![]() ![]() | _Attribute.GetTypeInfoCount | |
![]() ![]() | _Attribute.Invoke |
using System.Runtime.InteropServices; using System; // Declare a class member for each structure element. [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)] public class OpenFileName { public int structSize = 0; public string filter = null; public string file = null; // ... } public class LibWrap { // Declare a managed prototype for the unmanaged function. [DllImport("Comdlg32.dll", CharSet = CharSet.Unicode)] public static extern bool GetOpenFileName([In, Out] OpenFileName ofn); } public class MainMethod { static void Main() { } }
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core-Rolle wird nicht unterstützt), Windows Server 2008 R2 (Server Core-Rolle wird mit SP1 oder höher unterstützt; Itanium wird nicht unterstützt)
.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen für .NET Framework.


