Make generic method that takes 2 different generic types in c# is it
I’m trying to make method that reads 3 different lists, but they should be generic. We know that a generic list can be read like: public void msgList<T>(List<T> readlist) { //do something with generic readlist, as long as T is Int, double or something else } But suppose you want to read 2 arguments in… Read More Make generic method that takes 2 different generic types in c# is it