.NET
visa.txt
Associated article: The VISA I/O API & .NET
Tags: .NET
Published source code accompanying the article by David Gladfelter in which he examines the Virtual Instrument Software Architecture (VISA), a standard for instrument communication. He presents header files for using VISA in C# and VB.NET.
The VISA I/O API & .NET
by David Gladfelter
Example 1:
(a)
<DllImportAttribute("VISA32.DLL", EntryPoint:="#141", ExactSpelling:=True, CharSet:=CharSet.Ansi, SetLastError:=True, CallingConvention:=CallingConvention.Winapi)> _
Public Shared Function viOpenDefaultRM(ByRef sesn As Integer) ...


