Click here to Skip to main content
15,896,154 members
Articles / Programming Languages / C#

LiveCode.NET

Rate me:
Please Sign up or sign in to vote.
4.86/5 (55 votes)
6 May 2002Public Domain3 min read 231.9K   2.5K   170  
Compile C# code on-the-fly. Usage in a plug-in / plug-out component model.
using System;
using LiveCode.LiveInterface;

namespace LiveCode.LiveSample
{

public class LiveClass : MarshalByRefObject, ILiveInterface
{
	public LiveClass( string initString )
	{
		currentText = initString;
	}

	public string ModifyString( string inpString )
	{
		currentText += inpString;
		return currentText;
	}

	private string currentText;
}

}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under A Public Domain dedication


Written By
Web Developer
Switzerland Switzerland
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions