Files
GateDge2023_ljy/01.扩展/Extensions/BooleanExtension.cs
PastSaid 08d8878eef a
2024-03-11 14:47:23 +08:00

16 lines
266 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ExtensionMethods
{
public static class BooleanExtension
{
public static bool Turn(this bool obj)
{
return !obj;
}
}
}