4 references to ColumnCount
System.Private.CoreLib (4)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Matrix4x4.cs (4)
420
if (((uint)row >= RowCount) || ((uint)column >=
ColumnCount
))
424
return Unsafe.Add(ref Unsafe.As<Impl, float>(ref Unsafe.AsRef(in impl)), (row *
ColumnCount
) + column);
470
if (((uint)row >= RowCount) || ((uint)column >=
ColumnCount
))
474
Unsafe.Add(ref Unsafe.As<Impl, float>(ref Unsafe.AsRef(in impl)), (row *
ColumnCount
) + column) = value;