pascalabcnet/TestSuite/ObjectToString.txt
2024-05-04 14:08:21 +03:00

27 lines
917 B
Plaintext

integer{ 1 }
string{ abc }
UIntPtr{ 123 }
ConsoleColor{ Cyan }
List<integer>+Enumerator{ (Current=0) }
(integer, real){ (1, 2.3) }
ValueTuple<integer, real>{ (1, 2.3) }
array[,,,,,,,,] of byte{ [[[[[[[[[0,0]]]]]]]],[[[[[[[[0,0]]]]]]]]] }
array[,,,,,,,,] of byte{ [[[[[[[[[]]]]]]]]] }
List<real>{ [1.2,3] }
sequence of integer{ [2,3,4] }
ArrayList{ [6,7,8] }
r1{ (a=123; b=abc; p=123) }
procedure(byte){ procedure lambda(b: byte) }
procedure(byte){ procedure lambda(b: byte) => procedure Invoke(b: byte) }
function: Object{ (d1=procedure lambda(b: byte)) => function lambda: Object }
function: Object{ (d1=procedure lambda(b: byte)) => function lambda: Object => function Invoke: Object }
Dictionary<[TKey], [TValue]>
Base<byte, array of byte, word>
Base<[T], array of [T], word>
List<[T]>
List<[T]>+Enumerator
Parent<[T1]>+Nested<[T2]>
Parent<byte>+Nested<word>
Parent<byte>+Nested<[T2]>
Parent<[T1]>+Nested<word>