Equivalente a palavra-chave "using" do C # no powershell?

Quando eu uso outro objeto no .NET Framework em C #, posso economizar muita digitação usando a diretiva using.

<code>using FooCompany.Bar.Qux.Assembly.With.Ridiculous.Long.Namespace.I.Really.Mean.It;

...


  var blurb = new Thingamabob();

...
</code>

Então, existe uma maneira em Powershell de fazer algo semelhante? Estou acessando muitos objetos .net e não estou feliz de ter que digitar

<code> $blurb = new-object FooCompany.Bar.Qux.Assembly.With.Ridiculous.Long.Namespace.I.Really.Mean.It.Thingamabob;
</code>

o tempo todo.

questionAnswers(9)

yourAnswerToTheQuestion