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:
parent
4a88358f47
commit
db790920aa
@ -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.
|
||||||
|
Loading…
Reference in New Issue
Block a user