From 7192b46e9f0790408f080ced44044cfb63be4efe Mon Sep 17 00:00:00 2001 From: Oliver Booth Date: Tue, 20 Jul 2021 00:51:27 +0100 Subject: [PATCH] (#15) Format xmldoc for byte extensions --- X10D/src/ByteExtensions/ByteExtensions.cs | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/X10D/src/ByteExtensions/ByteExtensions.cs b/X10D/src/ByteExtensions/ByteExtensions.cs index c078fa8..3556a2e 100644 --- a/X10D/src/ByteExtensions/ByteExtensions.cs +++ b/X10D/src/ByteExtensions/ByteExtensions.cs @@ -1,4 +1,4 @@ -namespace X10D +namespace X10D { /// /// Extension methods for . @@ -60,20 +60,19 @@ namespace X10D /// /// if is not zero, or otherwise. /// - /// + /// /// /// The following example converts an array of values to values. - /// /// /// byte[] bytes = { byte.MinValue, 100, 200, byte.MaxValue }; /// bool result; - /// + /// /// foreach (byte value in bytes) /// { /// result = value.ToBoolean(); /// Console.WriteLine("{0, -5} --> {1}", value, result); /// } - /// + /// /// // The example displays the following output: /// // 0 --> False /// // 100 --> True