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

Syntax

Visual Basic (Declaration)
Public MustOverride Default ReadOnly Property IsVar( _ 
   ByVal Index As String _ 
) As Boolean
C#
public abstract bool this[
   string Index
] { get; }
C++
public abstract property bool default[String Index] abstract  {
    bool get(String Index);
}
J#
/** property */
public bool get_IsVar(string Index);
JScript
JScript supports the use of indexed properties, but not the declaration of new ones.

See Also