Show / Hide Table of Contents

Class Bag

This is the result whenever you request a drop from any API thought drop table. Normally you will operate it just as API results, but sometimes you want to manually keep adding drops inside a bag. It also implements an IEnumerable<Loot> which means that you can use it in a LINQ query

Implements
System.Collections.Generic.IEnumerable<Loot>
System.Collections.IEnumerable
System.IEquatable<Bag>

Properties

AmountCount

Give the sum of entry amounts. This will count the sum of each randomized entry amount, if you want just the amount of unique entries, use EntryCount

Declaration
public int AmountCount { get; }

EntryCount

Count unique entries inside the bag. Each unique entry count as 1, if you want the sum of amounts use AmountCount

Declaration
public int EntryCount { get; }
☀
☾
In This Article
Back to top
Generated by DocFX
☀
☾