AddMember() 공개 메소드

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

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

				limit--;
			}
		}