can we have property names like $ref #schema ? If so, how ? If not why not ?
I am actually to do something like this
dynamic d = new ExpandoObject();
d.$ref = somevlaue;
but I can’t do that?
Also , how do I workaround the fact that keywords can’t be property names?
Use
for using keywords as variable names. For more information you can see the rules for Identifiers.