Namespace: Contensive.BaseClasses
Assembly: CPBase (in CPBase.dll)

Syntax

Visual Basic (Declaration)
Public MustOverride Default Property GlobalVar( _ 
   ByVal Index As String _ 
) As String
C#
public abstract string this[
   string Index
] { get; set; }
C++
public abstract property string default[String Index] abstract  {
    String get(String Index);
    void set(String Index, String value);
}
J#
/** property */
public string get_GlobalVar(string Index);

/** property */
public void set_GlobalVar(string Index, string value);
JScript
JScript supports the use of indexed properties, but not the declaration of new ones.

See Also