Introduction - If you have any usage issues, please Google them yourself
private string findProperties(string ID)
{
ArrayList ar = information.owlProperties
int i = 0
while (i < ar.Count)
{
OwlProperty node = (OwlProperty)ar[i]
if (node.ID == ID)
return node.ChildEdges[ http://www.w3.org/2000/01/rdf-schema#comment ,0].ChildNode.ID + + node.ChildEdges[0].ChildNode.ID
// return node.ChildEdges[ http://www.w3.org/2000/01/rdf-schema#comment , 0].ChildNode.ID
i++
}
return
}