Squeak/.NET Bridge

Summary: Allows you to use .NET objects in your Squeak programs
Author: Ben Schroeder
Owner: Ben Schroeder (bvs)
Co-maintainers:
Categories:
Homepage: http://www.saltypickle.com/SqueakDotNet
PackageInfo name: DotNetBridge
RSS feed:

Description:

The Squeak/.NET bridge lets you use .NET objects
in your Squeak programs. It uses TCP sockets to
communicate with a .NET VM. You can use any .NET
library with the bridge, and can implement interfaces
from your .NET libraries in Squeak.

Here's the canonical example:

list := DotNet ArrayList new.
Transcript show: list count. "Prints 0"


Releases


Back