[int], [string] gibi kodlanır. Bu alana null değer atanamaz.
Örnek
Elimizde şöyle bir kod olsun
class test {
[int]$i1 = 42
}
$test = [test]::new()
Write-Host $test.i1
$test.i1 = $null
Write-Host $test.i1
Çıktı olarak şunu alırız. Yani alana null değeri verilemiyor.42
0
Hiç yorum yok:
Yorum Gönder