MongoDB.Bson.Serialization.Serializers.StackSerializer.AddItem C# (CSharp) 메소드

AddItem() 보호된 메소드

Adds the item.
protected AddItem ( object instance, object item ) : void
instance object The instance.
item object The item.
리턴 void
        protected override void AddItem(object instance, object item)
        {
            ((Stack)instance).Push(item);
        }