コード例 #1
0
ファイル: SchemaData.cs プロジェクト: OOP-03376400/DF_GCS_W
 /// <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
ファイル: SchemaData.cs プロジェクト: rnrneverdies/sharpkml
 /// <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);
 }