From e635b4d961fd49eca5ec54c89167a39e1855c7bd Mon Sep 17 00:00:00 2001 From: Genevieve Warren <24882762+gewarren@users.noreply.github.com> Date: Tue, 3 Jun 2025 08:32:32 -0700 Subject: [PATCH] Fix heading --- docs/fundamentals/runtime-libraries/system-int64.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/fundamentals/runtime-libraries/system-int64.md b/docs/fundamentals/runtime-libraries/system-int64.md index 3c5a470f18621..d4df435117d62 100644 --- a/docs/fundamentals/runtime-libraries/system-int64.md +++ b/docs/fundamentals/runtime-libraries/system-int64.md @@ -71,6 +71,6 @@ You can also format an value as a binary, octal, decimal, or :::code language="fsharp" source="./snippets/System/Convert/ToInt64/fsharp/formatting1.fs" id="Snippet2"::: :::code language="vb" source="./snippets/System/Int64/Overview/vb/formatting1.vb" id="Snippet2"::: -## Work with non-decimal 32-bit integer values +## Work with non-decimal 64-bit integer values -In addition to working with individual long integers as decimal values, you may want to perform bitwise operations with long integer values, or work with the binary or hexadecimal representations of long integer values. values are represented in 63 bits, with the sixty-fourth bit used as a sign bit. Positive values are represented by using sign-and-magnitude representation. Negative values are in two's complement representation. This is important to keep in mind when you perform bitwise operations on values or when you work with individual bits. In order to perform a numeric, Boolean, or comparison operation on any two non-decimal values, both values must use the same representation. +In addition to working with individual long integers as decimal values, you might want to perform bitwise operations or work with the binary or hexadecimal representations of long integer values. values are represented in 63 bits, with the sixty-fourth bit used as a sign bit. Positive values are represented by using sign-and-magnitude representation. Negative values are in two's complement representation. This is important to keep in mind when you perform bitwise operations on values or when you work with individual bits. To perform a numeric, Boolean, or comparison operation on any two non-decimal values, both values must use the same representation.