Antmicro.Migrant.Utilities.SwapList.SwapListItem.With C# (CSharp) Method

With() public method

public With ( int nextElementIndex = null, Delegate value = null ) : SwapListItem
nextElementIndex int
value System.Delegate
return SwapListItem
            public SwapListItem With(int? nextElementIndex = null, Delegate value = null)
            {
                return new SwapListItem(Key, value ?? Value, Creator, Id) { NextElementIndex = nextElementIndex ?? this.NextElementIndex };
            }
SwapList.SwapListItem