PHP 5 should allow you to instantiante .net classes.

However, I can't get the classic example



<?php
    $stack = new DOTNET("mscorlib", "System.Collections.Stack");
    $stack->Push(".Net");
    $stack->Push("Hello ");
    echo $stack->Pop() . $stack->Pop();
?>

to work. It gives a "Failed to instantiate .Net object" error, although the
.NET framework is installed.

Does anyone have any (successful or unsuccessful) experience?

Thanks,
Matthias

-- 
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to