How do you call a generic static method of a custom class in Powershell?
Given the following class:
public class Sample { public static string My
Fast way, if there are no name conflicts:
[Sample]::"MyMethod"("arg")