29
Is there any reason to use Powershell on Linux?
(lemmy.world)
Linux questions Rules (in addition of the Lemmy.zip rules)
Tips for giving and receiving help
Any rule violations will result in disciplinary actions
I didn't use powershell a lot but I remember that something nice about it is that you can use dot.net expression in it.
More than that, PowerShell is itself an implementation of .NET. Powershell "cmdlets" are really just convenient packaging of .NET classes. PowerShell can just handle any .NET functionality you might want to use natively because it is .NET, and then you can work that into standard programming logic like if/while/foreach/etc.
Yeah, you can invoke any dotnet api as long as you know which library to pull it from.