Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed typo in ToUint32 and ToUint64 description #201

Merged
merged 2 commits into from
Jan 12, 2023
Merged
Changes from 1 commit
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
4 changes: 2 additions & 2 deletions nanoFramework.CoreLibrary/System/BitConverter.cs
Original file line number Diff line number Diff line change
@@ -225,7 +225,7 @@ public static extern bool IsLittleEndian
public static extern ushort ToUInt16(byte[] value, int startIndex);

/// <summary>
/// Returns a 32-bit unsigned integer converted from two bytes at a specified position in a byte array.
/// Returns a 32-bit unsigned integer converted from four bytes at a specified position in a byte array.
/// </summary>
/// <param name="value">The array of bytes.</param>
/// <param name="startIndex">The starting position within value.</param>
@@ -235,7 +235,7 @@ public static extern bool IsLittleEndian
public static extern uint ToUInt32(byte[] value, int startIndex);

/// <summary>
/// Returns a 64-bit unsigned integer converted from two 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">The array of bytes.</param>
/// <param name="startIndex">The starting position within value.</param>