Chapter 4: DETERMINE THE DEBUGGING PROCESS AND EXPLAIN THE
4.2. Integrates many programs such as code completion, compiler, editor Outline
To set variable names in Winform:
WinForms has some rules to follow when naming variables to make your code easier to understand and maintain.
Use the appropriate prefix: lbl for control Label, btn for control buttons, txt for control TextBox, cmb for control ComboBox, chk for control CheckBox, tab for control TabControl, lst for control ListBox, dvw for control DatView,…
There are also other prefixes, depending on the type of control. Use clear and meaningful names. Set a variable name that describes the function or content of the control. Avoid short, vague names like a, b, c.
For example: txtFirstName, btnSubmit, chkRememberMe.
Use PascalCase or CamelCase style.
PascalCase style: start with a capital letter and capitalize each subsequent word.
CamelCase: Start with a lowercase letter and capitalize each subsequent word.
Performed Student: Nguyen Van Phi 56
For example: lblFirstName, txtLastName, btnSubmit_Click. Don't use keywords already in C# or WinForms.
Do not use variable names that contain keywords like int, string, class. Make sure the variable name does not match the control name available in WinForms like Form, Button, Label, etc.
Table 4-1: Some coding standard of Form.
OBJECT
NAME Textbox Button Label CheckBo
x LinkLabe
l TabContr
ol DataVie
w
SETNAME FOR OBJECT
txt btn lbl chk llbl tab dvw
To set a variable name in the Console:
Coding standards are a set of rules and principles that define how code should be written.
These standards can cover a wide range of topics, including:
Naming conventions: How to name variables, functions, and other elements of code.
- Formatting: How code should be indented, spaced, and aligned.
- Comments: How should comments be used to explain the code.
- Error handling: How errors should be handled and reported.
- Test: How should the code be tested.
Follow the naming rules specified by the project or team (if applicable): If you're working on a project or team, follow the naming rules defined by the project or team.
Table 4-2: Some coding standard of Console.
Numerical
order Console Programming
Standards For example
1 Naming variables and
functions CamelCase
int age; string fullName;
2 Indent and format code for (int i = 0; i < 5; i++) { Console.WriteLine(i); }
3 Note(Comment) // Function to sum two integers
Performed Student: Nguyen Van Phi 57
4 Event Handling button.Click += (sender, e) 5 Performance Optimization StringBuilder sb = new
StringBuilder();
6 Using constants and enums 7 Separate processing logic and
interface int CalculateSum(int a, int b);
Console.WriteLine("Enter number a:");
8 Using the Main() function static void Main()
Performed Student: Nguyen Van Phi 58
Example of form standard:
The following is a complete program using standard programming standards such as:
variable naming, standard function names, and standard object naming in winform. This program is a simple WinForms application that allows to enter numbers and find the largest of two or three numbers then display the User entered Results.
Figure 4-69: Form design
I have standard programming code, I have applied the rules of form programming standards such as:
Number 1 = txt_Number1 Number 2 = txt_Number2 Number 3 = txt_Number3 Output = txt_Output radioButton1 = rdb_Max2 radioButton2 = rdb_Max3
Performed Student: Nguyen Van Phi 59
Figure 4-70: Code Form (1)
Figure 4-71: Code Form (2)
Performed Student: Nguyen Van Phi 60
Figure 4-72: Result Max 2
Figure 4-73: Result Max3
Performed Student: Nguyen Van Phi 61
Example of standard console:
I have standard programming code, I have applied standard console programming rules such as: class names, variable declarations, string literals...
Figure 4-74: Code console
Figure 4-75: Result console
Performed Student: Nguyen Van Phi 62
4.3. Evaluate how the debugging process can be used to help develop more secure, robust applications. (M4)
Debugging in Visual Studio:
A debugger is a computer program used to correct errors in a program when it gives incorrect results or fails to run. Debugging makes your program more robust and complete, capable of handling any input or event it may encounter. It should be robust and able to detect vulnerabilities quickly. Prevent hackers from getting into your data and damaging your system, applications, etc. So debugger can be very useful in your work. It can diagnose errors and even provide debugging videos to developers in some cases. Most IDEs have debuggers that help programmers write code faster and avoid as few errors as possible.
Figure 4-76: Debuging
The debugging process in Visual Studio has many advantages and disadvantages as follows:
Advantages:
Performed Student: Nguyen Van Phi 63
- Perfect integration: Visual Studio is the mainstream integrated development environment (IDE) for .NET-based applications. Debugging is perfectly integrated in this IDE, making debugging easier and more efficient.
- Powerful debugging tools: Visual Studio provides a variety of powerful tools to aid in the debugging process, including setting breakpoints, variable viewing windows, stack views, condition debugging, and many other useful features that help detect and fix errors quickly.
- Multiple Programming Languages Support: Visual Studio supports many programming languages, not only C# and VB.NET, but also C++, F#, JavaScript, Python, and many more. This makes developing multilingual projects easy and convenient.
- Easy tracking and exception handling: Visual Studio allows developers to handle exceptions easily, helping to detect and handle unknown errors during execution.
- Remote debugging: Visual Studio supports remote debugging, allowing debugging of applications on server environments or remote devices, helping to identify and correct errors in a real-world environment.
Disadvantages:
- Resource requirements: Visual Studio is a powerful IDE, which means it requires high system resources, requiring a well-configured computer for a smooth working experience.
- Large size: Visual Studio is large in size with many features and components, so the installation and updating process can take time and consume disk space.
- Difficult to use for beginners: With so many features and tools, Visual Studio can be quite complicated and difficult to use for beginners.
- Having problems with large projects: Although Visual Studio supports the development of large projects, it can sometimes experience performance issues and take a long time to compile and run programs.
Example debugger of Visual Studio:
This is the code I want to fix. You need to start the debugger first. Press F5 or select Debug Target from the standard toolbar.
Here is a picture of the code I want to fix:
Performed Student: Nguyen Van Phi 64
Figure 4-77: Code
Figure 4-78: Star the debugger
When the program reaches a breakpoint, it pauses execution and opens a debug window that displays information about the program's state. Find the line of code where you want to stop program execution. Click on the left edge of the source code window (where the
Performed Student: Nguyen Van Phi 65
line numbers show) on the line you want to break. A red stop will appear, and a stop will be created. When you run the program in Debug mode, the program will stop executing at that breakpoint. You can check variable values, investigate commands, and view the state of the program at that time. To resume program execution from where you left off, you can press F5 or select Continue in the Debug window of Visual Studio.
Figure 4-79: Making a breakpoint.
When the program completes or you want to end debugging, you can press Shift + F5 or select Stop Debugging from the Debug menu or select the stop debugging button on the debug toolbar.
Figure 4-80: Stop the debugger
Performed Student: Nguyen Van Phi 66
CRITICAL EVALUATION
I'm done on the difference between procedural, object-oriented and event-driven programming, as well as IDEs. Using the IDE, implement basic algorithms in the code, define and show the debugging process, and discuss the relevance of coding standards. I did part P2, P3, P4, P5 finished M2, M3, M4. I hereby declare that my work is done by myself. I do not copy any material nor plagiarize online. I feel like I deserve an M.
Performed Student: Nguyen Van Phi 67
CONCLUSION
After completing this report, you have the definitions of algorithms, flowcharts, and application software development. I also know a lot about procedural, reactive and event- driven programming. Understand IDE concepts and IDE issues. Learn how to debug, how to debug, and the importance of coding standards.
Programming is great! It helps us understand how the devices around us work. This is very interesting and wonderful. Thanks, my advisor!
Performed Student: Nguyen Van Phi 68