CodeSteps

Python, C, C++, C#, PowerShell, Android, Visual C++, Java ...

C# – Modifiers – static Modifier

Another interesting modifier C# provides is static modifier. We can use this on classes & it’s members. The static Modifier A static member can be declared using static modifier. static is the keyword we use to define the static members. static members belongs to the type itself; not to associate with specific objects. When we […]

PowerShell – Get-Member cmdlet – Gets the properties and methods of objects

PowerShell is developed using .Net framework. The commands using in PowerShell are internally access .Net framework classes, it’s methods and properties etc, to show the related results. The results shown for each PowerShell cmdlet is the collection of objects. Each of the object has it’s members; the members are methods, properties etc,. We can use […]

Mozilla Firefox – Change Master Password

Through our previous Article, we have discussed saving and managing login credentials in the Mozilla Firefox browser. Saving the login credentials is NOT enough; you need to protect the details to avoid unauthorized access. By default, the Mozilla Firefox browser does NOT protect the login details. These can be accessible to everyone who has the […]

Python – Control Flows – The while Statement

We have discussed if Statement in our previous Article “Python – Control Flows – The if Statement“. The if Statement is one of the control statements in Python, used to control the flow of the Program depending on the conditional expression. The code is written inside the if Statement is going to execute only once […]

Python – Control Flows – The if Statement

When we write the code in any language, we always write portion of the code to execute depending on certain condition(s). This will give more control and easy to manage the code. The statement which control the flow of the execution is control or conditional statement. One of such control statement is; the if statement. […]

Scroll to top