ArrayExtension.AddChild(Object) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Appends the supplied object to the end of the array.
public:
virtual void AddChild(System::Object ^ value);
public:
void AddChild(System::Object ^ value);
public void AddChild (object value);
abstract member AddChild : obj -> unit
override this.AddChild : obj -> unit
member this.AddChild : obj -> unit
Public Sub AddChild (value As Object)
Parameters
- value
- Object
The object to add to the end of the array.
Implements
Remarks
This method is not intended to be called directly, and does not participate in any existing .NET interpretation of the x:Array
markup extension behavior. Any code access to the backing array instance should be done with array APIs or language features. Any alternative XAML reader or XAML writer implementations should instead use the .NET System.Xaml service extensions such as GetAddMethod to determine what method to call, or LookupCollectionKind together with appropriate interface casting.