Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ TranslateIndexToManifestConvention()

int System.Diagnostics.Tracing.ManifestBuilder.TranslateIndexToManifestConvention ( int idx,
string evtName )
inlineprivate

Definition at line 884 of file ManifestBuilder.cs.

885 {
887 {
888 foreach (int item in value)
889 {
890 if (idx >= item)
891 {
892 idx++;
893 continue;
894 }
895 break;
896 }
897 }
898 return idx + 1;
899 }
bool TryGetValue(TKey key, [MaybeNullWhen(false)] out TValue value)
readonly Dictionary< string, List< int > > perEventByteArrayArgIndices

References System.item, System.Diagnostics.Tracing.ManifestBuilder.perEventByteArrayArgIndices, System.Collections.Generic.Dictionary< TKey, TValue >.TryGetValue(), and System.value.

Referenced by System.Diagnostics.Tracing.ManifestBuilder.TranslateToManifestConvention().