Files
GateDge2023_ljy/01.扩展/Extensions/BooleanExtension.cs

16 lines
266 B
C#
Raw Normal View History

2024-03-04 16:50:20 +08:00
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;
}
}
}