Skip to content

Instantly share code, notes, and snippets.

@shoupn
Last active February 18, 2019 16:05
Embed
What would you like to do?
public T Add<T> (T num1, T num2)
{
dynamic a = num1;
dynamic b = num2;
return a + b;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment