示例#1
0
 /// <summary>
 /// Adds the specified <see cref="GX.SimpleArrayData"/> to this instance.
 /// [Google Extension]
 /// </summary>
 /// <param name="array">The <c>SimpleArrayData</c> to add to this instance.</param>
 /// <exception cref="ArgumentNullException">array is null.</exception>
 /// <exception cref="InvalidOperationException">
 /// array belongs to another <see cref="Element"/>.
 /// </exception>
 public void AddArray(GX.SimpleArrayData array)
 {
     this.AddChild(array);
 }
示例#2
0
 /// <summary>
 /// Adds the specified <see cref="GX.SimpleArrayData"/> to this instance.
 /// [Google Extension].
 /// </summary>
 /// <param name="array">The <c>SimpleArrayData</c> to add to this instance.</param>
 /// <exception cref="ArgumentNullException">array is null.</exception>
 /// <exception cref="InvalidOperationException">
 /// array belongs to another <see cref="Element"/>.
 /// </exception>
 public void AddArray(GX.SimpleArrayData array)
 {
     this.AddAsChild(this.arrayData, array);
 }