10-14-2025 06:45 AM
Hello, I am using external .NET built in .NET 8 library for SAP communication. When I try to read property of output class I get error 1779 and explaination 'LabVIEW: (Hex 0x6F3) The specified property was not found in the .NET Core type.' Property should return array of .NET class. Does it mean that array of .NET (8) Core class is not allowed in Labview?
Or am I missing something?
I am using Labview 2025 Q3
Solved! Go to Solution.
10-20-2025 03:59 AM
Hello,
LabVIEW 2025 Q3 supports .NET Core and .NET 5+ (including .NET 8), but with some limitations.
To actually use, if you drop a .NET constructor node on the block diagram, right-click and select "Select .NET Core Constructor"
Using “Select .NET Core Constructor” ensures LabVIEW loads your .NET 8 DLL correctly.
Souha
10-21-2025 04:15 AM
Hello Souhe,
if you check my screenshot I am creating creating class SapACBBackflash+ResultTable from Invoke node and then Property Node throws error. Property node does not allow me switch between .NET Core/Framework. Here I am attaching screenshot of the whole code.
10-21-2025 10:21 AM - edited 10-21-2025 10:22 AM
Hello,
Thank you for the informations. Please review your .NET code to ensure the property you want Labview to access is declared as public. If Labview still cannot read the property, try exposing a property that returns a primitive array, to confirm Labview’s array support.
Alternatively, create a public method that returns the array, which can be called from labview using an Invoke Node. Also, verify that your assembly and all its dependencies are loaded correctly in Labview. and make sure both Labview 2025 Q3 and the .NET 8 runtime are fully updated to the latest patches.
References : Using .NET Assemblies with LabVIEW - NI
Characteristics of LabVIEW-Built .NET Framework Assemblies - NI
Souha
10-22-2025 09:09 AM
Hello Soohe, I did some changes inside my .NET code. Now inside GetData method I am doing needed convertion and method now returns ResultTableItem (from ResultTable.DetailReturn[0]). It works fine when Labview reads class instead of array of classes.
So I presume this is a bug and should be reported (don't know how, yet).
10-23-2025
01:18 AM
- last edited on
11-13-2025
04:48 AM
by
Content Cleaner
Report as a Bug?
=> https://www.ni.com/my/s/technical-support
Add a link to this Forum thread as well! 🙂
Best
Claude
10-23-2025 02:39 AM
10-23-2025 02:57 AM
Bug reported. Thank you for link!
10-23-2025 02:58 AM
It seems .NET (core) support is still quite broken 😞 I hope most of the bugs will be solved in patches.