12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- #region License, Terms and Conditions
- #endregion
- namespace Jayrock
- {
- #region Imports
- using System;
- #endregion
- internal sealed class BooleanObject
- {
-
-
-
-
-
- public readonly static object True = true;
- public readonly static object False = false;
-
- public static object Box(bool value)
- {
- return value ? True : False;
- }
-
- private BooleanObject()
- {
- throw new NotSupportedException();
- }
- }
- }
|