Interface IValueContainer<T>
- Namespace
- ElectricDrill.SoapRpgFramework.Utils
- Assembly
- com.electricdrill.soap-rpg-framework.Runtime.dll
Interface for objects that can contain and query values. Provides a standardized way to check for value containment across different value containers.
public interface IValueContainer<in T>Type Parameters
- T
- The type of value contained and queried by the container. 
Methods
Contains(T)
Determines whether the container includes the specified value.
bool Contains(T value)Parameters
- valueT
- The value to locate in the container. 
Returns
- bool
- True if the value is found in the container; otherwise, false.