namespace APIproject
{
public class ApiCallResponse //class1
class Program //class2
}
I have two classes in my code and both are in the same file name Program.cs. I want to shift my ApiCallResponse class into another file like Program1.cs And then I want to call the new file Program1.cs into Program.cs to access that class. How can I do that?
ApiCallResponseclass to a new file, call the file ApiCallResponse.cs.