WebApplications.Testing.Data.ObjectRecord.GetValues C# (CSharp) Method

GetValues() public method

public GetValues ( object values ) : int
values object
return int
        public int GetValues(object[] values)
        {
            if (values == null)
                throw new NullReferenceException();
            int length = values.Length < _columnValues.Length ? values.Length : _columnValues.Length;
            Array.Copy(_columnValues, values, length);
            return length;
        }