There are many codes in C# that use the keywords using
and new
. They look very simple!
How to achieve that in in PowerShell elegantly!
For example I want to change the following C# code to PowerShell
using (var image = new MagickImage(new MagickColor("#ff00ff"), 512, 128))
{
new Drawables()
// Draw text on the image
.FontPointSize(72)
.Font("Comic Sans")
.StrokeColor(new MagickColor("yellow"))
.FillColor(MagickColors.Orange)
.TextAlignment(TextAlignment.Center)
.Text(256, 64, "Magick.NET")
// Add an ellipse
.StrokeColor(new MagickColor(0, Quantum.Max, 0))
.FillColor(MagickColors.SaddleBrown)
.Ellipse(256, 96, 192, 8, 0, 360)
.Draw(image);
}
It is difficult to write the new
expression because it contains one another! What elegant solution is there?
C#
using
is just syntactic sugar fortry {} finally {}
so you can do the same in PowerShell. The disposal of the object will be put in thefinally
block.new
can be replaced withNew-Object
. Of coursenew
can be made an alias toNew-Object
but MS chose not toSee