CodeSteps

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

Author : Raju

PowerShell – An Introduction

PowerShell is an Open Source programming & scripting language from Microsoft, mainly useful for the Administrators to automate the processes related to the Applications running on the Operating Systems. PowerShell contains commands (call them cmdlets – command-lets). Each cmdlet is for a different purpose. We can use a combination of these cmdlets to perform some […]

C# – Display list of running processes

Running Processes in Windows, we display using the C# program. I am going to explain step-by-step, developing and running the C# program to display currently running processes in Windows. I have tested this Program in Windows 7 Operating System. In Windows 64-bit Operating System, we have 32-bit & 64-bit processes. In Task Manager, you can […]

Outlook Add-In : Creating a Simple Add-In Using C#

I am really excited to write this Article, on Microsoft Office Object Model. To extend the functionalities of Microsoft Office Applications (like Excel, Word, etc.,) Microsoft has provided Office Object Model. Let me give a brief introduction to Microsoft Office Development. Microsoft has provided Object Models to allow to extend the functionalities of Microsoft Applications. These […]

C# : Getting files from the Directory

In this Article we will discuss how to get or fetch the files from the Directory or Folder using C#. There are multiple functions we can use to fetch the files from the Directory. One of it is, and the simple one is, GetFiles method from the Directory class. The Syntax of GetFiles method looks […]

C#: Classes – Access Specifiers & Inheritance

‘C#’ class members are accessible based on their access specifiers. I will write a separate article on class’s access specifiers in more detail. But here I want to give an high level introduction on access specifiers. Access Specifiers ‘C#’ provides public, private, internal, protected and protected internal access specifiers. Remember that the class members are […]

C# – How to fix “error CS5001: Program ‘xyz.exe’ does not contain a static ‘Main’ method suitable for an entry point”?

If you want to create an executable file from your ‘C#’ project or file, your code should contain a ‘static Main’ method. This is an entry point to ‘C#’ program. Otherwise, ‘C#’ compiler will throw the below error: error CS5001: Program ‘xyz.exe’ does not contain a static ‘Main’ method suitable for an entry point To […]

C# – Classes – Outer, Inner and Wrapper Classes

In this article we will look into few more things about the classes. Outer Classes, Inner Classes and Wrapper Classes ‘C#’ classes allows to define classes (inner classes) within the classes. Inner classes are only accessible through its outer classes or wrapper classes. To create an instance of an Inner class, we have to create […]

Scroll to top