Define DynamicKeyword 'ExecTest'
Note: Don't copy&paste from following code. PowerShell SyntaxHighlighter remove some lines. Instead, use RAW view.
#Requires -Version 4.0
Set-StrictMode -Version Latest| public class Immutable { | |
| public class Person { | |
| public readonly string Firstname; | |
| public readonly string Lastname; | |
| public Person(string firstname, string lastname) { | |
| Firstname = firstname; | |
| Lastname = lastname; |