![]() |
Problem bei Recordportierung zu dotNet
Hi @ all
Ich sitz gerad an der Portierung von VCL nach VCL.NET und um eine tolle Thirdparty-DLL aufzurufen muss ich folgendes Record übergeben:
Delphi-Quellcode:
und bekomm dabei natürlich die Meldung: "Ungültige Typenumwandlung" hat jemand ne Idee wie ich das in .Net codieren kann?
TTypeId = record
case Boolean of True : (num : LongWord); False : (str : array[0..3] of Char); end; Greetz Boombuler |
Re: Problem bei Recordportierung zu dotNet
Eine der umständlichen Alternativen:
Delphi-Quellcode:
type
TTypeId = record case Boolean of True : (num : LongWord); False : (str : record a, b, c, d: AnsiChar; end); end; |
Alle Zeitangaben in WEZ +1. Es ist jetzt 15:52 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz