14 lines
298 B
C#
14 lines
298 B
C#
using System.Collections.Generic;
|
|
|
|
namespace VRMShaders
|
|
{
|
|
public static class KeyValuePariExtensions
|
|
{
|
|
public static void Deconstruct<T, U>(this KeyValuePair<T, U> pair, out T key, out U value)
|
|
{
|
|
key = pair.Key;
|
|
value = pair.Value;
|
|
}
|
|
}
|
|
}
|