Например:
Код: Выделить всё
ObjectIdentifier rootId = ...;
Variable variable = ...;
if (rootId.IsRootOf(variable.Id))
{
// The variable's id is a child of root id!
}
Подробнее здесь: https://stackoverflow.com/questions/596 ... identifier
Код: Выделить всё
ObjectIdentifier rootId = ...;
Variable variable = ...;
if (rootId.IsRootOf(variable.Id))
{
// The variable's id is a child of root id!
}