This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Requires -RunAsAdministrator | |
[CmdletBinding()] | |
param ( | |
[Parameter(Mandatory = $false)] | |
[string] | |
$PythonVersion = '3.9.13' | |
) | |
function Update-Environment { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace Ivi.Visa; | |
public static class RawIOReadExtensions | |
{ | |
public static async ValueTask ReadAsync( | |
this IMessageBasedRawIO io, | |
byte[] buffer, | |
long index = 0, | |
long count = -1, | |
CancellationToken cancellationToken = default) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Diagnostics; | |
using System.Threading; | |
using System.Threading.Tasks; | |
using System.Windows; | |
using System.Windows.Threading; | |
namespace WpfApp3 | |
{ | |
/// <summary> |