Skip to content

Instantly share code, notes, and snippets.

@GIBZ-GIPE
Last active June 24, 2020 11:35
Show Gist options
  • Save GIBZ-GIPE/62a816850b12765c113a9e9555ff347d to your computer and use it in GitHub Desktop.
Save GIBZ-GIPE/62a816850b12765c113a9e9555ff347d to your computer and use it in GitHub Desktop.
class Program
{
static void Main(string[] args)
{
// 1)
Compare(5, 10);
// 2)
Compare("hallo", "hallo");
// 3)
Compare(true, false);
// 4)
Compare(1.1, 1.2);
bool Compare(T value1, T value2)
{
if(value1.Equals(value2))
{
return true;
}
return false;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment