Re: [Rubydotnet-developer] Email getting through?
Status: Alpha
Brought to you by:
thomas
|
From: Tim S. <ti...@ih...> - 2003-07-21 10:40:18
|
On Sun, Jul 20, 2003 at 06:26:42PM -0400, Richard Kilmer wrote:
> Tim,
>
> I got it, downloaded it, and am going to look through it later tonight.
>
> Thank you so much for posting it.
I changed the interface tonight to that you can do
DotNet.System.Console.WriteLine("Hello C# World!")
rather than
console = DotNet::Class.new('System.Console')
console.WriteLine("Hello C# World!")
Likewise with assemblies you have loaded.
I just need to change the implementation a bit (I did the naive thing
and just created a tree of nodes corresponding to everything in
mscorlib. Unfortunately, this uses 10 megs of memory, so I'll probably
use delayed evaluation to only load what is requested.)
|