RosettaCodeData/Task/Classes/PowerShell/classes-2.psh

18 lines
315 B
Text
Raw Permalink Normal View History

2016-12-05 22:15:40 +01:00
class MyClass
{
[type]$MyProperty1
[type]$MyProperty2 = "Default value"
# Constructor
MyClass( [type]$MyParameter1, [type]$MyParameter2 )
{
# Code
}
# Method ( [returntype] defaults to [void] )
[returntype] MyMethod( [type]$MyParameter3, [type]$MyParameter4 )
{
# Code
}
}