using System; public class Test { public class Tsundere { public static implicit operator int(Tsundere tsundere) => 228; public static implicit operator string(Tsundere tsundere) => "waifu"; } public static void Main() { var tsundere = new Tsundere(); if (tsundere == 228 && tsundere == "waifu") Console.WriteLine("darova"); } }