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