From 1dca7064d0761e39fc595142d36ecaaa41086e78 Mon Sep 17 00:00:00 2001 From: Oliver Booth Date: Fri, 12 Mar 2021 11:55:46 +0000 Subject: [PATCH] One-line returns node for xmldoc --- .../BooleanExtensions/BooleanExtensions.cs | 42 ++++--------------- 1 file changed, 7 insertions(+), 35 deletions(-) diff --git a/X10D/src/BooleanExtensions/BooleanExtensions.cs b/X10D/src/BooleanExtensions/BooleanExtensions.cs index 6d83302..10589de 100644 --- a/X10D/src/BooleanExtensions/BooleanExtensions.cs +++ b/X10D/src/BooleanExtensions/BooleanExtensions.cs @@ -21,11 +21,7 @@ namespace X10D.BooleanExtensions /// Converts the current Boolean value to the equivalent 8-bit unsigned integer. /// /// The Boolean value to convert. - /// - /// 1 if is - /// -or- - /// 0 otherwise. - /// + /// 1 if is , or 0 otherwise. /// /// The following example illustrates the conversion of to values. /// @@ -48,11 +44,7 @@ namespace X10D.BooleanExtensions /// Converts the current Boolean value to the equivalent decimal number. /// /// The Boolean value to convert. - /// - /// 1 if is - /// -or- - /// 0 otherwise. - /// + /// 1 if is , or 0 otherwise. /// /// The following example illustrates the conversion of to values. /// @@ -75,11 +67,7 @@ namespace X10D.BooleanExtensions /// Converts the current Boolean value to the equivalent double-precision floating-point number. /// /// The Boolean value to convert. - /// - /// 1 if is - /// -or- - /// 0 otherwise. - /// + /// 1 if is , or 0 otherwise. /// /// The following example illustrates the conversion of to values. /// @@ -102,11 +90,7 @@ namespace X10D.BooleanExtensions /// Converts the current Boolean value to the equivalent 16-bit signed integer. /// /// The Boolean value to convert. - /// - /// 1 if is - /// -or- - /// 0 otherwise. - /// + /// 1 if is , or 0 otherwise. /// /// The following example illustrates the conversion of to values. /// @@ -131,11 +115,7 @@ namespace X10D.BooleanExtensions /// Converts the current Boolean value to the equivalent 32-bit signed integer. /// /// The Boolean value to convert. - /// - /// 1 if is - /// -or- - /// 0 otherwise. - /// + /// 1 if is , or 0 otherwise. /// /// The following example illustrates the conversion of to values. /// @@ -160,11 +140,7 @@ namespace X10D.BooleanExtensions /// Converts the current Boolean value to the equivalent 64-bit signed integer. /// /// The Boolean value to convert. - /// - /// 1 if is - /// -or- - /// 0 otherwise. - /// + /// 1 if is , or 0 otherwise. /// /// The following example illustrates the conversion of to values. /// @@ -189,11 +165,7 @@ namespace X10D.BooleanExtensions /// Converts the current Boolean value to the equivalent single-precision floating-point number. /// /// The Boolean value to convert. - /// - /// 1 if is - /// -or- - /// 0 otherwise. - /// + /// 1 if is , or 0 otherwise. /// /// The following example illustrates the conversion of to values. ///