Sets the value at the given index. If the tag's name is different from the given index, the tag's name will be changed to the given index's one.
compound["string"] = new String("test", "test"); assert(compound["string"].name == "string"); compound["int"] = 12; compound["string"] = "Another string";
See Implementation
Sets the value at the given index. If the tag's name is different from the given index, the tag's name will be changed to the given index's one.