Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- [Serializable]
- public struct DataPair<TKey, TValue>
- {
- public TKey Key;
- public TValue Value;
- public void Deconstruct(out TKey key, out TValue value)
- {
- key = Key;
- value = Value;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement