•
When programming in C#, one of the most useful constructs at your disposal is the switch statement. It provides a way to execute different blocks of code based on the value of an expression. This can make your code cleaner and more readable compared to a series of if-else statements, especially when dealing with…
•
What is a Nested if Statement? In C#, a nested ‘if’ statement occurs when you place one ‘if’ statement inside another ‘if’ statement. This allows you to perform multiple layers of conditional checks, making it possible to handle more complex decision-making scenarios. Here’s a basic example to illustrate the concept: In this example, we…
•
What is the if Statement? In C#, the ‘if‘ statement is used to evaluate a boolean expression – an expression that results in either ‘true’ or ‘false’. Based on the result of this evaluation, the ‘if’ statement will execute a block of code. If the condition is ‘true’, the code inside the if block runs; if it’s ‘false’, the code is skipped.…
•
Here we have ready to use function to add all IWebElements text into a List collection when working with Selenium C#. This is a very simple function that works well, to use it you will only have to enter XPath that you will be getting your elements from, and change variables to fit your…
•
Definition:Unary Operators are the operators that are performed on a single operand. Syntax:Let’s look at the syntax of the Unary Operators. Learn the following topics before learning Unary Operators.
•
Definition:Arithmetic Operations is just like it sounds, you can perform the operations on numerical values as well as numerical variables. Syntax:First, let’s see what it looks like when directly printing to console. Now let’s take a look at the Arithmetic Operations using and storing them in a variables. We can also declare two numbers…
•
Definition:Concatenation is the process of combining any and all of data types (strings, integers, doubles or floats, chars, a even a boolean). Syntax:Here is some examples of how concatenation works and when to use it: Homework:Heres a little homework that you can try on your own, try to complete it without looking for help,…
•
Ready to use method to extract only unique letters from a string. Instructions:To use the method – copy and paste it in your class, rename string variables and enter or pass a string you need to extract unique letters from.
•
Ready to use method to extract only unique numbers from a string. Instructions:To use the method – copy and paste it in your class, rename string variables and enter or pass a string you need to extract unique numbers from.
•
Ready to use method to extract only numbers from a string. Instructions:To use the method – copy and paste it in your class, rename string variables and enter or pass a string you need to extract numbers from.