Skip to content

Instantly share code, notes, and snippets.

@guitarrapc
guitarrapc / UsingNameSpace-Class.ps1
Last active February 8, 2017 21:52
PowerShell 5.0 using namespace syntax for .NET Operation
#Require -Version 5.0
# PowerShell 5.0 now supports <using namespace NameSpace> sysntax like C#!
using namespace System;
using namespace System.Text;
using namespace System.Diagnostics;
using namespace System.Linq;
using namespace System.Collections.Generic;
class NameSpaceSyntaxTest