We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2bbfd7b commit 6bf2d7cCopy full SHA for 6bf2d7c
1 file changed
CSharpToJavaScript/APIs/JS/Ecma/Object.cs
@@ -187,5 +187,19 @@ public dynamic ValueOf()
187
{
188
throw new System.NotImplementedException();
189
}
190
+
191
+ //For emulation "Bracket notation"
192
+ //https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Property_accessors#bracket_notation
193
+ public Object this[string property]
194
+ {
195
+ get
196
197
+ throw new System.NotImplementedException();
198
+ }
199
+ set
200
201
202
203
204
205
0 commit comments