Click here to Skip to main content
15,890,123 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Assignment_form = new Assignment(withDraw, balance);
            _form.ShowDialog();


What I have tried:

i want to remove these errors kindly help
Posted
Updated 28-May-21 21:34pm
Comments
Richard MacCutchan 29-May-21 3:10am    
What errors?

1 solution

You need a space:
C#
Assignment_form = new Assignment(withDraw, balance);
          ^
          |
C#
Assignment _form = new Assignment(withDraw, balance);
Without it, Assignment_form is a variable name the system is looking for and not finding.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900