Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -623,7 +623,7 @@ public static uint ToUInt32(ReadOnlySpan<byte> value)
}

/// <summary>
/// Returns a 64-bit unsigned integer converted from four bytes at a specified position in a byte array.
/// Returns a 64-bit unsigned integer converted from eight bytes at a specified position in a byte array.
/// </summary>
/// <param name="value">An array of bytes.</param>
/// <param name="startIndex">The starting position within <paramref name="value"/>.</param>
Expand Down Expand Up @@ -653,7 +653,7 @@ public static ulong ToUInt64(ReadOnlySpan<byte> value)
}

/// <summary>
/// Returns a 128-bit unsigned integer converted from four bytes at a specified position in a byte array.
/// Returns a 128-bit unsigned integer converted from sixteen bytes at a specified position in a byte array.
/// </summary>
/// <param name="value">An array of bytes.</param>
/// <param name="startIndex">The starting position within <paramref name="value"/>.</param>
Expand Down Expand Up @@ -746,7 +746,7 @@ public static float ToSingle(ReadOnlySpan<byte> value)
}

/// <summary>
/// Returns a double-precision floating point number converted from four bytes at a specified position in a byte array.
/// Returns a double-precision floating point number converted from eight bytes at a specified position in a byte array.
/// </summary>
/// <param name="value">An array of bytes.</param>
/// <param name="startIndex">The starting position within <paramref name="value"/>.</param>
Expand Down
Loading