As in:
public class MyClass { private static var MyProp = new {item1 = \"a\", item2 = \"b\"}; }
Note: The above doesn\'t compile nor wo
No, any member should be a strongly typed.
You might go for dynamic type to give your member a chance to be evaluated at runtime though.
Edit : Members should be Explicitly Typed.