Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re: Perl in C#

by bmcnett (Novice)
on Feb 16, 2006 at 07:15 UTC ( [id://530604]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    MSScriptControl.ScriptControlClass Interpreter;
    Interpreter = new MSScriptControl.ScriptControlClass();
    Interpreter.Language = @"PerlScript";
    string Program = @"reverse 'abcde'";
    string Results = (string)Interpreter.Eval(Program);
    
  2. or download this
    use Win32::OLE;
    my $Interpreter;
    ...
    $Interpreter->{Language} = 'PerlScript';
    my $Program = "reverse 'abcde'";
    my $Results = $Interpreter->Eval($Program);
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://530604]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (6)
As of 2024-04-23 12:12 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found