using System;
class Program
{
static void Main()
{
object a = 5;
object b = 5;
Console.WriteLine(a == b);
}
}
Post #1011
498
- ❤ 3
- 👍 1
- 🔥 1
AK Akrus Games | Unity @akrusunity · 2.68K subscribers using System;
class Program
{
static void Main()
{
object a = 5;
object b = 5;
Console.WriteLine(a == b);
}
}