.NET
jaclnet.txt
Associated article: Jacl.NET
Tags: .NET Tools JVM Languages Design
Published source code examples accompanying the article by Will Ballard in which he presents Jacl.NET, a port of the Jacl Java-based TCL interpreter to the .NET Framework. Also see JACLNET.ZIP.
Jacl.NET
by Will Ballard
Listing One
try
{
System.IO.StreamReader rdr = new System.IO.StreamReader(
this.GetType().get_Assembly().GetManifestResourceStream(resName));
eval(rdr.ReadToEnd(), 0);
} catch (Exception e2) {
throw new TclException(this, "cannot read resource "" + resName + "&...


