OLD | NEW |
---|---|
(Empty) | |
1 [System.String]::Empty; | |
2 [Foo.Bar+Baz]::Abc; | |
3 [int] 42; | |
4 | |
5 ---------------------------------------------------- | |
6 | |
7 [ | |
8 ["namespace", "[System.String]"],"::Empty",["punctuation", ";"], | |
9 ["namespace", "[Foo.Bar+Baz]"],"::Abc",["punctuation", ";"], | |
10 ["namespace", "[int]"]," 42",["punctuation", ";"] | |
11 ] | |
12 ---------------------------------------------------- | |
13 | |
14 Testing namespaces | |
OLD | NEW |