CodeSteps

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

AWS Lightsail – How to check health metrics?

Health Metrics in Amazon Lightsail are very useful to know whether the Applications in Lightsail instances are working smoothly and useful to take the decision on upgrade / downgrade the configuration of the System to balance the price per usage. In this Article we will discuss about checking the Health Metrics in Amazon Lightsail instance. […]

C# – Understanding of Structures

Structures are composite types and can contain different types of elements. That means, structures can contain integer elements, strings, floating point elements, and even other structure types etc.,. Unlike in C language, C# structures can encapsulates both data elements and the functions which are operating on the data. Structures are value types. Defining a structure […]

PowerShell – Managing Current Working Directory

Most of the Applications use the Current Working Directory to store the Application related files. PowerShell provides set of cmdlets, useful to manage the current working directory. In PowerShell, we use the noun “Location” for the working directory; so the same used for the cmdlets. The Get-Location cmdlet This command is useful to get the […]

C# – Query Expressions

Query Expressions contains a set of instructions to select the data source and retrieve the data from the selected data source. Define a Query C# provides clauses to define a query. A query will start using the from clause and ended using either select clause or a group clause. Where to store the query? We […]

Scroll to top