I have generated this simplified version of my problem:
public class Variable { public Variable(string s, int i) { } public Variable(string str) : base(str, 0) // error here { } } Clearly I have a constructor that take 2 arguments. But the error is saying that I don't.
I am confused.
I am using .NET Standard 2.0
Please ask for any additional clarification.
: this(str, 0)instead of: base(str, 0)