.NET
Microsoft Technologies based on the .NET software framework.
4,096 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
When I make a call to .NET in, let's say, PowerShell 7.4.3, such as:
$HT = [System.Collections.Hashtable]::new()
am I right when I say that PowerShell uses the .NET version on which it is based, in my example 8.0.6?
Yes. But you lose the behaviors added by PowerShell.
Thank you for your answers.