Namespace: Contensive.BaseClasses
Assembly: CPBase (in CPBase.dll)
Syntax
Visual Basic (Declaration) |
---|
Public MustOverride Default Property Var( _ 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_Var(string Index); /** property */ public void set_Var(string Index, string value); |
JScript |
---|