主頁(yè) > 知識(shí)庫(kù) > Powershell中可以使用的.Net實(shí)用靜態(tài)方法

Powershell中可以使用的.Net實(shí)用靜態(tài)方法

熱門(mén)標(biāo)簽:湖州電銷(xiāo)防封卡 什么渠道可以找外呼系統(tǒng)客戶 使用電話機(jī)器人電銷(xiāo)是否違法 金融電銷(xiāo)公司怎么辦理外呼系統(tǒng) 真人和電話機(jī)器人對(duì)話 信陽(yáng)話務(wù)外呼系統(tǒng)怎么收費(fèi) 電話智能外呼系統(tǒng)誠(chéng)信合作 安徽400電話辦理 雷霆電話機(jī)器人電話

支持所有版本。

Powershell能夠使用.net靜態(tài)方法,比如下面有一些你常用的方法:

復(fù)制代碼 代碼如下:

[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')

要獲得更多的方法,你可以刪掉方括號(hào)后面的代碼,再添加兩個(gè)冒號(hào),這時(shí)在Powershell_ISE中將會(huì)彈出這個(gè)類(lèi)所有可選的方法及屬性。在Powershell控制臺(tái)中,你也可以使用TAB來(lái)獲取選擇方法屬性。

當(dāng)然你也可以通過(guò)管道符查看他所有類(lèi)型:

復(fù)制代碼 代碼如下:

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)

要查看方法的參數(shù),省略掉他的括號(hào)即可:

復(fù)制代碼 代碼如下:

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入門(mén)教程之訪問(wèn).Net程序集、COM和WMI實(shí)例
  • Powershell小技巧之查看安裝的.Net framework版本信息
  • PowerShell中調(diào)用.NET對(duì)象的靜態(tài)方法、靜態(tài)屬性和類(lèi)方法、類(lèi)屬性例子
  • PowerShell中查看當(dāng)前版本、Windows版本、.NET版本信息的代碼
  • 一個(gè)ASP.Net下的WebShell實(shí)例
  • PowerShell 定時(shí)執(zhí)行.Net(C#)程序的方法
  • ASP.NET下使用WScript.Shell執(zhí)行命令
  • 如何使用 Shell 腳本執(zhí)行 .NET Core 應(yīng)用

標(biāo)簽:山南 運(yùn)城 岳陽(yáng) 六盤(pán)水 濟(jì)南 湛江 德州 鶴崗

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Powershell中可以使用的.Net實(shí)用靜態(tài)方法》,本文關(guān)鍵詞  Powershell,中,可以使,用的,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Powershell中可以使用的.Net實(shí)用靜態(tài)方法》相關(guān)的同類(lèi)信息!
  • 本頁(yè)收集關(guān)于Powershell中可以使用的.Net實(shí)用靜態(tài)方法的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章