Boo.BooLangProject.HierarchyListener.GetFirstChild C# (CSharp) Метод

GetFirstChild() приватный Метод

Gets the first child of an item.
private GetFirstChild ( uint item ) : object
item uint Item to get the first child of.
Результат object
        private object GetFirstChild(uint item)
        {
            object child;
            int result = hierarchy.GetProperty(item, FirstChild, out child);

            return result == Ok ? child : null;
        }