GetItems() публичный Метод

Gets the items in the collection as a T:object[].
public GetItems ( object editValue ) : object[]
editValue object The collection object being edited.
Результат object[]
Пример #1
0
 private void ObjectCollectionEditorForm_Load(object sender, EventArgs e)
 {
     foreach (object obj in editor.GetItems(value))
     {
         textBox1.AppendText(obj.ToString() + '\n');
     }
     lines = textBox1.Lines.Length;
 }