O que exatamente é um ScriptBlock do PowerShell?

Um PowerShell ScriptBlock não é umfechamento lexical como não se fecha sobre as variáveis ​​referenciadas em seu ambiente declarativo. Em vez disso, parece utilizar o escopo dinâmico e liberar variáveis ​​que são vinculadas no tempo de execução em uma expressão lambda.

function Get-Block {
  $b = "PowerShell"
  $value = {"Hello $b"}
  return $value
}
$block = Get-Block
& $block
# Hello
# PowerShell is not written as it is not defined in the scope
# in which the block was executed.


function foo {
  $value = 5
  function bar {
    return $value
  }
  return bar
}
foo
# 5
# 5 is written $value existed during the evaluation of the bar function
# it is my understanding that a function is a named scriptblock
#  which is also registered to function:

Chamar GetNewClosure () em um ScriptBlock retorna um novo ScriptBlock que fecha as variáveis ​​referenciadas. Mas isso é muito limitado em escopo e capacidade.

O que é uma classificação do ScriptBlock?

questionAnswers(2)

yourAnswerToTheQuestion