Method CurrentPinSiteResultsFilling<T>
- Assembly
- NationalInstruments.SemiconductorTestLibrary.Abstractions.dll
CurrentPinSiteResultsFilling<T>(SitePinInfo, Dictionary<string, IDictionary<int, T>>, T)
Associates a pin site result with a pin name or pin group name in the provided pin site results dictionary. Current result of the primary pin is returned with the pin group name in case of merging. Current result of individual pins are accumulated and returned with the pin group name in case of ganging.
public static void CurrentPinSiteResultsFilling<T>(SitePinInfo sitePinInfo, Dictionary<string, IDictionary<int, T>> pinSiteResults, T result)Parameters
sitePinInfoSitePinInfo-
The NationalInstruments.SemiconductorTestLibrary.Common.SitePinInfo object containing pin and site information.
pinSiteResultsDictionary<string, IDictionary<int, T>>-
The dictionary to update with the result. In the dictionary, the key is the pin name or the pin group name and the value is a dictionary that maps site numbers to results.
resultT-
The result to associate with the pin site.
Type Parameters
T-
The type of the result to associate.