public static string GetProperty([NotNull] this PSObject psObject, [NotNull] PsObjectProperty property) { return(psObject.Properties[property]?.Value.ToString()); }
public static T GetProperty <T>([NotNull] this PSObject psObject, [NotNull] PsObjectProperty property) { return((T)psObject.Properties[property]?.Value); }