1) DotNet_Start().au3 438 B

1234567891011121314
  1. #include "..\..\Includes\DotNet.au3"
  2. Opt( "MustDeclareVars", 1 )
  3. Example()
  4. Func Example()
  5. ; Start the latest version of .NET Framework
  6. ; DotNet_Start() is automatically called by the other functions in DotNet.au3
  7. ; You only have to call DotNet_Start() if you need an older version of .NET Framework
  8. DotNet_Start()
  9. If @error Then Return ConsoleWrite( "DotNet_Start ERR" & @CRLF )
  10. ConsoleWrite( "DotNet_Start OK" & @CRLF )
  11. EndFunc