The Squeak/.NET bridge lets you use .NET objectsin your Squeak programs. It uses TCP sockets tocommunicate with a .NET VM. You can use any .NETlibrary with the bridge, and can implement interfacesfrom your .NET libraries in Squeak. Here's the canonical example: list := DotNet ArrayList new.Transcript show: list count. "Prints 0"