PerlSharp : Perl Namespace
Reference

This type represents Perl references to scalars, arrays, hashes, and other references.

public class Reference : Value

Remarks
Although code references and blessed references are references in Perl, they are wrapped as Code and Blessed objects which do not inherit from this type.
Members

See Also: Inherited members from Value.

Constructors
Reference(Value)
Creates a reference to another value.
Properties
Value [read-only]
Value. Gets the underlying value that the reference refers to.
Member Details
Reference Constructor
public Reference (Value value)

Creates a reference to another value.

Parameters
value
The value that the reference will refer to.
Remarks
The reference is created in the context of value.

Value
public Value Value { get; }

Gets the underlying value that the reference refers to.

Value
The underlying value that the reference refers to.