-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathps-typeshortcuts.txt
30 lines (27 loc) · 1.1 KB
/
ps-typeshortcuts.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[int] typeof(int)
[int[]] typeof(int[])
[long] typeof(long)
[long[]] typeof(long[])
[string] typeof(string)
[string[]] typeof(string[])
[char] typeof(char)
[char[]] typeof(char[])
[bool] typeof(bool)
[bool[]] typeof(bool[])
[byte] typeof(byte)
[double] typeof(double)
[decimal] typeof(decimal)
[float] typeof(float)
[single] typeof(float)
[array] typeof(System.Array)
[hashtable] typeof(System.Collections.Hashtable)
[psobject] typeof(System.Management.Automation.PSObject)
[ref] typeof(System.Management.Automation.PSReference)
[regex] typeof(System.Text.RegularExpressions.Regex)
[scriptblock] typeof(System.Management.Automation.ScriptBlock)
[switch] typeof(System.Management.Automation.SwitchParameter)
[type] typeof(System.Type)
[wmi] typeof(System.Management.ManagementObject)
[wmisearcher] typeof(System.Management.ManagementObjectSearcher)
[wmiclass] typeof(System.Management.ManagementClass)
[xml] typeof(System.Xml.XmlDocument)