1
0
mirror of https://github.com/oliverbooth/X10D synced 2024-11-10 03:45:41 +00:00

One-line example WriteLine invocation

This commit is contained in:
Oliver Booth 2021-03-11 16:54:58 +00:00
parent 4a88358f47
commit db790920aa

View File

@ -32,10 +32,8 @@ namespace X10D.BooleanExtensions
/// bool falseFlag = false; /// bool falseFlag = false;
/// bool trueFlag = true; /// bool trueFlag = true;
/// ///
/// Console.WriteLine("{0} converts to {1}.", falseFlag, /// Console.WriteLine("{0} converts to {1}.", falseFlag, falseFlag.ToByte());
/// falseFlag.ToByte()); /// Console.WriteLine("{0} converts to {1}.", trueFlag, trueFlag.ToByte());
/// Console.WriteLine("{0} converts to {1}.", trueFlag,
/// trueFlag.ToByte());
/// // The example displays the following output: /// // The example displays the following output:
/// // False converts to 0. /// // False converts to 0.
/// // True converts to 1. /// // True converts to 1.
@ -61,10 +59,8 @@ namespace X10D.BooleanExtensions
/// bool falseFlag = false; /// bool falseFlag = false;
/// bool trueFlag = true; /// bool trueFlag = true;
/// ///
/// Console.WriteLine("{0} converts to {1}.", falseFlag, /// Console.WriteLine("{0} converts to {1}.", falseFlag, falseFlag.ToDecimal());
/// falseFlag.ToDouble()); /// Console.WriteLine("{0} converts to {1}.", trueFlag, trueFlag.ToDecimal());
/// Console.WriteLine("{0} converts to {1}.", trueFlag,
/// trueFlag.ToDouble());
/// // The example displays the following output: /// // The example displays the following output:
/// // False converts to 0. /// // False converts to 0.
/// // True converts to 1. /// // True converts to 1.
@ -90,10 +86,8 @@ namespace X10D.BooleanExtensions
/// bool falseFlag = false; /// bool falseFlag = false;
/// bool trueFlag = true; /// bool trueFlag = true;
/// ///
/// Console.WriteLine("{0} converts to {1}.", falseFlag, /// Console.WriteLine("{0} converts to {1}.", falseFlag, falseFlag.ToDouble());
/// falseFlag.ToDouble()); /// Console.WriteLine("{0} converts to {1}.", trueFlag, trueFlag.ToDouble());
/// Console.WriteLine("{0} converts to {1}.", trueFlag,
/// trueFlag.ToDouble());
/// // The example displays the following output: /// // The example displays the following output:
/// // False converts to 0. /// // False converts to 0.
/// // True converts to 1. /// // True converts to 1.