I have a c# windows form program which uses the FTDI FTD2XX_NET library. How can I use specific FT_ commands like FT_GetDeviceInfo, FT_GetDriverVersion, etc? I have found in another answer this:
FTD2XX_NET.FTDI.FT_STATUS ftStatus = FTD2XX_NET.FTDI.FT_STATUS.FT_OK;
// Create new instance of the FTDI device class
FTD2XX_NET.FTDI myFtdiDevice = new FTD2XX_NET.FTDI();
It works for me also, but I can't figure out how it works. Can someone explains to me how it works? I am a newbie, so please be analytical! Thank you in advance,