- Aug
- 2,799
- 144
In TCC v35, this is how Get-Member output is displayed using PShell,
In TCC v36, this is how Get-Member output is displayed using PShell,
Please make the output for Get-Member in TCC v36 be the same as it is in TCC v35,
that is,
the same as output for Get-Member is in PowerShell.
Joe
Code:
E:\Utils>pshell /s "[AddClass] | get-member -static"
TypeName: AddClass
Name MemberType Definition
---- ---------- ----------
Add Method static long Add(long i, long j)
Equals Method static bool Equals(System.Object objA, System.Object objB)
new Method AddClass new()
PPP Method static double PPP(double ppk)
ReferenceEquals Method static bool ReferenceEquals(System.Object objA, System.Object objB)
E:\Utils>ver
TCC 35.00.21 x64 Windows 10 [Version 10.0.19045.7058]
In TCC v36, this is how Get-Member output is displayed using PShell,
Code:
U:\>pshell /s "[AddClass] | get-member -static"
static long Add(long i, long j)
static bool Equals(System.Object objA, System.Object objB)
AddClass new()
static double PPP(double ppk)
static bool ReferenceEquals(System.Object objA, System.Object objB)
U:\>ver
TCC 36.00.17 x64 Windows 10 [Version 10.0.19045.7058]
Code:
PS E:\utils> [AddClass] | get-member -static
TypeName: AddClass
Name MemberType Definition
---- ---------- ----------
Add Method static long Add(long i, long j)
Equals Method static bool Equals(System.Object objA, System.Object objB)
new Method AddClass new()
PPP Method static double PPP(double ppk)
ReferenceEquals Method static bool ReferenceEquals(System.Object objA, System.Object objB)
PS E:\utils> $PSversionTable
Name Value
---- -----
PSVersion 5.1.19041.7058
PSEdition Desktop
PSCompatibleVersions {1.0, 2.0, 3.0, 4.0...}
BuildVersion 10.0.19041.7058
CLRVersion 4.0.30319.42000
WSManStackVersion 3.0
PSRemotingProtocolVersion 2.3
SerializationVersion 1.1.0.1
Please make the output for Get-Member in TCC v36 be the same as it is in TCC v35,
that is,
the same as output for Get-Member is in PowerShell.
Joe