0

Java コードで c# に移植しています。次の Java コードを c# で書き直したいと思いました。前もって感謝します :)

// Called whenever an exception would be thrown.
    public void onException(java.lang.Throwable throwable, WebDriver driver){
        System.out.println("onException' Called whenever an exception would be thrown ...");
    }
4

1 に答える 1

1

翻訳が好きなのは次のとおりです。

public void OnException(System.Exception exception, IWebDriver driver)
{
    Console.WriteLine("OnException' Called whenever an exception would be thrown ...");
}
于 2012-10-23T08:40:39.603 に答える