¡@

Home 

c# Programming Glossary: ironruby

Dynamic interception of calls in .NET

http://stackoverflow.com/questions/1331851/dynamic-interception-of-calls-in-net

Alternatively you could look at a dynamic language like IronRuby which has a built in alias_method and define_method goodness..

Call Ruby or Python API in C# .NET

http://stackoverflow.com/questions/1684145/call-ruby-or-python-api-in-c-sharp-net

easier than ever MethodMissingDemo.cs using System using IronRuby class Program static void Main var rubyEngine Ruby.CreateEngine..

.NET Unit Testing packages?

http://stackoverflow.com/questions/1760/net-unit-testing-packages

NUnit a few years ago and have played briefly around with IronRuby with the goal of getting something like rspec going but don't..

Adding scripting functionality to .NET applications

http://stackoverflow.com/questions/260/adding-scripting-functionality-to-net-applications

language that is specifically built for scripting such as IronRuby IronPython or Lua . IronPython and IronRuby are both available.. such as IronRuby IronPython or Lua . IronPython and IronRuby are both available today. For a guide to embedding IronPython..

C# Math calculator [duplicate]

http://stackoverflow.com/questions/2859111/c-sharp-math-calculator

using a dynamic language in the DLR such as IronPython and IronRuby. Check out this post var engine new IronPython.Hosting.PythonEngine..

Scripting language for embedding into C#/.NET applications? [closed]

http://stackoverflow.com/questions/462311/scripting-language-for-embedding-into-c-net-applications

one of the best options. Another great option would be IronRuby . The main difference I see would be if your developers users..

Algorithm for simplifying decimal to fractions

http://stackoverflow.com/questions/5124743/algorithm-for-simplifying-decimal-to-fractions

or even write Ruby code inside a C# code file if you use IronRuby which runs on top of the .net framework. Updated to a new link..

C#: How to parse arbitrary strings into expression trees?

http://stackoverflow.com/questions/776265/c-how-to-parse-arbitrary-strings-into-expression-trees

from abstract syntax trees it's used for IronPython and IronRuby . The two should make a good pair. Oh and they're both first..