Write a program in c# with a class manage matrices that performs addition, subtraction , multiplication of two matrices. multiplies a matrix with a constant and calculates transpose matrix.
C#
Intro to C# Programming Language
C# is a multi-paradigm, managed, object-oriented programming language created by Microsoft in conjunction with the .net framework. C# can also be used with non-Microsoft implementations (most notably, Mono ).
Convert Text into Image and Image into Text in C#
Today I was surfing on Facebook, suddenly I saw a post in our C# Group, a guy was asking about converting text to an image format in c#. I was free for sometime so I decided to explore this problem, after 1 hour of struggling I did this. This is the simplest code for this problem & it gives you an image from the text you have inputted. There you go !!
Getting Computer Name and Computer User Name in C# Projects
I was working on a small project in which i was trying to get the User account name and User Computer Name on windows form so i tried some codes & in last i came up with this code. It gives System Name and System User Name. By this code you can get computer identification in your simple projects.
Traversing Arrays in C#
This program consist of csharp code for searching, inserting & deleting in array. This is so far easy way of doing traversing in c#. Objective of this program is to Write a program in c# demonstrating traversing, deleting, inserting and searching.
Methods/Functions Example in C#
This is a simple example program showing use of Methods/Function in csharp. Write c# program using METHODS and making Calculator.
Get All Files Name from Folder in C#
This Program is the simple basic implementation of filing to get Files detail in a Folder in Csharp console application & windows form application. Give Details of the Files in Given Directory C#.
Create Setup Installer for Projects in Visual Studio
This post is related to creating a installer of windows form or WPF application that you have created & now need to install it on other PCs with .NET framework. I hope you will understand it. This post can answer Solution of How to make a setup installer? how to Deploy C# application with .Net 4.0 , How to create a setup on install Shield to install two programs. How to Add .Net Framework 4.0 into setup project. How to run my project(windows forms) c# in a different computer. How can I make a program work on different computers independent of .NET Framework? C# , how to Deploy C# application on any computer?
Implement Priority Queue in C# from Scratch
This topic took my 2 days for understanding. I searched on whole internet for this but cant find the exact code for what i was searching. I needed a queue built from scratch so when i get it i decided to put it on my website so you guys don't waste time searching for it like me.
Draw Pyramid in C# in Console
Write a C# Program Which Displays the Pyramid or Triangle. Source Code to Draw Pyramid / Triangle in C# Console Application. This program uses for loops to display pyramid on console.