C#或VBNET等效于范围解析运算符?

时间:2011-11-22 17:25:10

标签: c# php vb.net code-conversion

我正在将php代码移植到vbnet(我在vbnet上比c#好一点)。在php中是范围解析运算符。

这是位:

$args = phpZenfolio::processArgs( func_get_args() );

等同于c#/ vbnet?

整个函数如下所示我认为相当于vbnet中的sub new。

    public function __construct()
{
    $args = phpZenfolio::processArgs( func_get_args() );
    $this->APIVer = ( array_key_exists( 'APIVer', $args ) ) ? $args['APIVer'] : '1.4';
    // Set the Application Name
    if ( ! isset( $args['AppName'] ) ) {
        throw new PhpZenfolioException( 'Application name missing.', -10001 );
    }
    $this->AppName = $args['AppName'];
    // All calls to the API are done via POST using my own constructed httpRequest class
    $this->req = new httpRequest();
    $this->req->setConfig( array( 'adapter' => $this->adapter, 'follow_redirects' => TRUE, 'max_redirects' => 3, 'ssl_verify_peer' => FALSE, 'ssl_verify_host' => FALSE, 'connect_timeout' => 5 ) );
    $this->req->setHeader( array( 'User-Agent' => "{$this->AppName} using phpZenfolio/{$this->version}",
                                  'X-Zenfolio-User-Agent' => "{$this->AppName} using phpZenfolio/{$this->version}",
                                  'Content-Type' => 'application/json' ) );
}

以下是进程args位:

private static function processArgs( $arguments )
 {
    $args = array();
    foreach ( $arguments as $arg ) {
        if ( is_array( $arg ) ) {
            $args = array_merge( $args, $arg );
        } else {
            if ( strpos( $arg, '=' ) !== FALSE ) {
                $exp = explode('=', $arg, 2);
                $args[$exp[0]] = $exp[1];
            } else {
                $args[] = $arg;
            }
        }
    }

    return $args;
  }

2 个答案:

答案 0 :(得分:1)

您正试图调用static方法:

ClassName.MethodName(args);

该方法必须显式声明为static(在Visual Basic中为Shared),并且无法访问this(在Visual Basic中为Me)。

答案 1 :(得分:0)

通常,范围解析运算符是点(。)

http://msdn.microsoft.com/en-us/library/2hxce09y%28v=vs.80%29.aspx

但是,在某些情况下,别名解析运算符类似于PHP或C ++(::)中使用的运算符,特别是在引用全局范围时。

http://msdn.microsoft.com/en-us/library/htccxtad.aspx