using System.Collections.Generic; using System.Linq; namespace Db4OSeries { public class Person { private IEnumerable _ownsPets; public string FirstName { get; set; } public string SirName { get; set; } public bool IsMarried { get; set; } public IEnumerable Owns { get { return _ownsPets; } set { _ownsPets = value.ToArray(); } } } }