CodeSteps

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

.Net – Assemblies – An Introduction

Assemblies are the self-describing building blocks of .Net-based applications. Assemblies contain Assembly manifest, which contains metadata information, contains a collection of data that describes the relationship between the elements in the assembly; Type metadata describing the exported types and methods; MSIL (Microsoft Intermediate Language) code that CLR (Common Language Runtime) executes; and a set of resources. All these parts […]

Skype – How to change Skype password?

Skype allows changing the password, once you logged into your Skype account. Through this article, we are going to discuss this, with step-by-step instructions. Step (1). Open Skype application. Assuming you have installed Skype on your System. You can double-click on the Desktop icon to open the Skype application. Step (2). Sign-in into Skype, by entering […]

COM – Creating a COM Component using C++ – IUnknown interface

COM – An introduction COM (Component Object Model) is a platform-independent, distributed, and object-oriented technology developed by Microsoft to create re-usable software components and enables software components to communicate. COM enables interaction between objects through interfaces. Interfaces are core concepts to build COM components. An interface contains function prototypes only not the function implementations. COM […]

PHP – Arrays

PHP is a popular server-side scripting language mostly used for web-development. PHP does not need to be embedded in HTML tags. PHP code will be in <?php and ?> delimiters (short form <? and ?>). PHP Arrays PHP Arrays are ordered maps contains key, value pairs. Keys can be either integers or strings. String keys are […]

Scroll to top