您现在的位置是:网站首页> 编程资料编程资料
Powershell中可以使用的.Net实用静态方法_PowerShell_
2023-05-26
423人已围观
简介 Powershell中可以使用的.Net实用静态方法_PowerShell_
支持所有版本。
Powershell能够使用.net静态方法,比如下面有一些你常用的方法:
[Math]::Round(7.9)
[Convert]::ToString(576255753217, 8)
[Guid]::NewGuid()
[Net.Dns]::GetHostByName('schulung12')
[IO.Path]::GetExtension('c:\test.txt')
[IO.Path]::ChangeExtension('c:\test.txt', 'bak')
要获得更多的方法,你可以删掉方括号后面的代码,再添加两个冒号,这时在Powershell_ISE中将会弹出这个类所有可选的方法及属性。在Powershell控制台中,你也可以使用TAB来获取选择方法属性。
当然你也可以通过管道符查看他所有类型:
PS> [Math] | Get-Member -MemberType *Method -Static
TypeName: System.Math
Name MemberType Definition
---- ---------- ----------
Abs Method static sbyte Abs(sbyte value), static int16 Abs(int16 value), static int Abs(int value), sta...
Acos Method static double Acos(double d)
Asin Method static double Asin(double d)
Atan Method static double Atan(double d)
Atan2 Method static double Atan2(double y, double x)
BigMul Method static long BigMul(int a, int b)
Ceiling Method static decimal Ceiling(decimal d), static double Ceiling(double a)
Cos Method static double Cos(double d)
Cosh Method static double Cosh(double value
DivRem Method static int DivRem(int a, int b, [ref] int result), static long DivRem(long a, long b, [ref] ...
Equals Method static bool Equals(System.Object objA, System.Object objB)
Exp Method static double Exp(double d)
Floor Method static decimal Floor(decimal d), static double Floor(double d)
IEEERemainder Method static double IEEERemainder(double x, double y)
Log Method static double Log(double d), static double Log(double a, double newBase)
Log10 Method static double Log10(double d)
Max Method static sbyte Max(sbyte val1, sbyte val2), static byte Max(byte val1, byte val2), static int1...
Min Method static sbyte Min(sbyte val1, sbyte val2), static byte Min(byte val1, byte val2), static int1...
Pow Method static double Pow(double x, double y)
ReferenceEquals Method static bool ReferenceEquals(System.Object objA, System.Object objB)
Round Method static double Round(double a), static double Round(double value, int digits), static double ...
Sign Method static int Sign(sbyte value), static int Sign(int16 value), static int Sign(int value), stat...
Sin Method static double Sin(double a)
Sinh Method static double Sinh(double value)
Sqrt Method static double Sqrt(double d)
Tan Method static double Tan(double a)
Tanh Method static double Tanh(double value)
Truncate Method static decimal Truncate(decimal d), static double Truncate(double d)
要查看方法的参数,省略掉他的括号即可:
PS> Get-Something -Path test
You entered test.
PS> [Math]::Round
OverloadDefinitions
-------------------
static double Round(double a
static double Round(double value, int digits)
static double Round(double value, System.MidpointRounding mode)
static double Round(double value, int digits, System.MidpointRounding mode
static decimal Round(decimal d
static decimal Round(decimal d, int decimals)
static decimal Round(decimal d, System.MidpointRounding mode)
static decimal Round(decimal d, int decimals, System.MidpointRounding mode)
- 使用PowerShell .Net获取电脑中的UUID
- PowerShell中使用.NET将程序集加入全局程序集缓存
- PowerShell入门教程之访问.Net程序集、COM和WMI实例
- Powershell小技巧之查看安装的.Net framework版本信息
- PowerShell中调用.NET对象的静态方法、静态属性和类方法、类属性例子
- PowerShell中查看当前版本、Windows版本、.NET版本信息的代码
- 一个ASP.Net下的WebShell实例
- PowerShell 定时执行.Net(C#)程序的方法
- ASP.NET下使用WScript.Shell执行命令
- 如何使用 Shell 脚本执行 .NET Core 应用
相关内容
- Powershell获取系统中所有可停止的服务_PowerShell_
- 用PowerShell代替批处理吧!_PowerShell_
- Powershell中请求WebServices并以JSON格式输出结果_PowerShell_
- Powershell中阻止”确认提示”的方法_PowerShell_
- PowerShell中实现混淆密码示例_PowerShell_
- Powershell展开对象数据结构并以JSON格式输出_PowerShell_
- PowerShell检查网卡状态和对应的电源设置_PowerShell_
- PowerShell添加本地账户脚本分享_PowerShell_
- Powershell检查网站响应并计算执行时间例子_PowerShell_
- PowerShell中改变F1帮助文档命令获取方式为在线文档的方法_PowerShell_
