I tried to create a class library that is being used in a winforms application in C#.
In my application I have input from a textbox and through a button click I'm instantiating my event with one parameter (from the textbox). I tried to create a constructor with this one parameter - but to no avail. It seems if I just add a class to be existing project I can do this but not when referencing a class library.
Just wanted to find a way to use a one parameter constructor within a class library if possible. Please help. (this may not work logically because when I reference the class library - I am actually going outside the original assembly - but maybe....)