How I can call a static class method from another static class method?
Class MyClass{
static [String] Method1(){
return "Hello";
}
static [String] Method2(){
# Call another static method from the same class
return Method1() + "World";
}
}
I have tried [MyClass]::Method1()
but I wan to know if there is any shorter.