CASCExplorer.Salsa20.Salsa20CryptoTransform.Add C# (CSharp) Method

Add() private static method

private static Add ( uint v, uint w ) : uint
v uint
w uint
return uint
            private static uint Add(uint v, uint w)
            {
                return unchecked(v + w);
            }