1 2 3 4 5 6 7 8 9 10 11 12 13 |
#https://msdn.microsoft.com/es-es/library/microsoft.visualbasic.interaction.partition(v=vs.110).aspx #Public Shared Function Partition ( # Number As Long, # Start As Long, # Stop As Long, # Interval As Long #) As String Add-Type -AssemblyName Microsoft.VisualBasic $year=1984 [Microsoft.VisualBasic.Interaction]::Partition($year, 1950, 2049, 10) |