[SOLVED] (Thank you) Print to Printer C#
I'm trying to complete the Print to Printer, generic methods, code coach challenge detailed below: You are writing a program that can output the value of a variable of any type. it takes a string, an integer, and a double value as input and the should output those values. create a generic method Print for a Printer class to execute the given calls correctly. sample input Hello 14 7.6 sample output Showing Hello Showing 14 Showing 7.6 note that there is no object of Printer class, so the generic method should be static in my attempt at writing this method I've encountered an error code CS7036 There is no argument given that corresponds to the formal parameter... for the three Print functions. if anyone could point me in the right direction towards resolving this issue id appreciate it. thank you. my attempt: (updated to provide a correct solution) https://code.sololearn.com/ca23a147A2a2/#cs