Dreamine.UI.Wpf.Controls 1.0.1
Dreamine.UI.Wpf.Controls 사용자 인터페이스 기능과 구성 요소를 제공합니다.
로딩중...
검색중...
일치하는것 없음
ViewModelKeyCache.cs
이 파일의 문서화 페이지로 가기
2{
11 public static class ViewModelKeyCache
12 {
29 public static Dictionary<string, long> IndexMap { get; } = new();
30
71 public static long GetOrIncrement(string typeName)
72 {
73 IndexMap.TryGetValue(typeName, out long current);
74 checked { current++; }
75 IndexMap[typeName] = current;
76 return current;
77 }
78
87 public static void Reset() => IndexMap.Clear();
88 }
89}