Method Add
- Assembly
- NationalInstruments.SemiconductorTestLibrary.Abstractions.dll
Add<TOther>(TOther)
Performs add operation between every element in current PinSiteData object and the given value.
public PinSiteData<T> Add<TOther>(TOther value)
Parameters
value
TOtherThe scalar value to be added.
Returns
- PinSiteData<T>
A new PinSiteData object that contains the result of the addition.
Type Parameters
TOther
Remarks
This method can accept either a scalar or an array as the input value, but the value must be of the same underlying type, T, as the PinSiteData object.
Add<TOther>(SiteData<TOther>)
Performs add operation between every element in current PinSiteData object and the given SiteData object.
public PinSiteData<T> Add<TOther>(SiteData<TOther> other)
Parameters
other
SiteData<TOther>The other SiteData<T> to be added.
Returns
- PinSiteData<T>
A new PinSiteData object that contains the result of the addition.
Type Parameters
TOther
Remarks
This method can accept a SiteData object of either a scalar or an array type as the input value, but the underlying type of the input value must be of the same underlying type, T, as the PinSiteData object.
Add<TOther>(PinSiteData<TOther>)
Performs add operation between every element in current PinSiteData object and the given PinSiteData object.
public PinSiteData<T> Add<TOther>(PinSiteData<TOther> other)
Parameters
other
PinSiteData<TOther>The other PinSiteData<T> to be added.
Returns
- PinSiteData<T>
A new PinSiteData object that contains the result of the addition.
Type Parameters
TOther
Remarks
This method can accept a PinSiteData object of either a scalar or an array type as the input value, but the underlying type of the input value must be of the same underlying type, T, as the PinSiteData object being operated on.