AddMember() public method

public AddMember ( SNode node ) : void
node SNode
return void
        protected void Parse(SNode stream, int limit)
        {
            while (!Reader.AtEnd && limit != 0)
            {
                SNode thisobj = ParseOne();
                if (thisobj != null)
                {
                    stream.AddMember(thisobj);
                }

                limit--;
            }
        }
		protected void Parse(SNode stream, int limit)
		{
			while (!Reader.AtEnd && limit != 0)
			{
				SNode thisobj = ParseOne();
				if (thisobj != null)
					stream.AddMember(thisobj);

				limit--;
			}
		}