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;
        }