Beispiel #1
0
        internal static ConstReferenceNode ConstReferenceNode(string value)
        {
            ConstReferenceNode constReferenceNode = s_ReferenceNodePool.Get();

            constReferenceNode.identifier = value;
            return(constReferenceNode);
        }
Beispiel #2
0
 protected bool Equals(ConstReferenceNode other)
 {
     return(string.Equals(identifier, other.identifier));
 }