Powershell 에서 사용 할 수 있 는.Net 정적 방법
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')
더 많은 방법 을 얻 으 려 면 괄호 뒤의 코드 를 삭제 하고 두 개의 콜론 을 추가 할 수 있 습 니 다.이때 PowershellISE 에 서 는 선택 할 수 있 는 모든 방법 과 속성 이 팝 업 됩 니 다.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)
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
(5) Powershell 별명 (Alias)예 를 들 어 Powershell 은 출력 창 을 알 아 보 는 데 사용 되 는 Clear - host 라 는 내부 함수 가 있 습 니 다.명령 프롬프트 에 cls 나 clear 명령 을 입력 하면 Powershel...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.