C# Corner
Tech
News
Videos
Forums
Trainings
Books
Live
More
Interviews
Events
Jobs
Learn
Career
Members
Blogs
Challenges
Certifications
Bounties
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
Tags
No tag found
Content Filter
Articles
Videos
Blogs
Resources
News
Forums
Interviews
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Mike Gold(7)
Tony Tromp(1)
Jigar Desai(1)
Mark Johnson(1)
Paul Trott(1)
Raimund Neumuller(1)
David Sosby(1)
Avgust Ishechenkp(1)
Andrew McCarter(1)
des_kenny (1)
Scott MacDiarmid(1)
John O Donnell(1)
Prasad H(1)
Rajadurai P(1)
Prasad (1)
Shamim Ahmed(1)
Paul Lockwood(1)
Mokhtar B(1)
Hrishikesh Dhruv(1)
Resources
No resource found
Eater Game II - The Stone Maze
Oct 02, 2002.
This program combines the designs of the Eater Game and the Maze Generation Program to create a more challenging game, Eater Game II. In this game, you move a pacman-like character through a maze and eat as many stones as you can before time runs out. You have a minute and a half to try to eat stones before the pac-man simply freezes-up and accepts his quota of stones.
Generating Maze using C# and .NET
Sep 25, 2002.
Did you ever get the feeling that cubicles were laid out with the idea that there could be no escape? (Must be I am a bit overworked these days). Today's article focuses on how to generate a maze using the depth first search algorithm. This is a very simple but clever algorithm that creates a maze by randomly stripping one available wall between two cells for every cell in the grid.
Mastermind Computer Player using Genetic Algorithms in C#
Jul 22, 2002.
After writing the Genetic Algorithm Article for implementing a Genetic Algorithm in C#, I tried to think of a good example of how to illustrate a real-world use of Genetic Algorithms to illustrate artificial intelligence.
Nemesis-7rc1 ( Codename Deviate)
Jun 13, 2002.
Nemesis-7 is a full-screen 2D shoot’em up that makes use of the DirectInput, DirectSound and DirectDraw interfaces from DirectX. The player controls a spaceship which he uses to duel the computer opponent. I implemented some artificial intelligence to make the CPU play more human.
Mastermind Game with Drag and Drop Functionality
May 15, 2002.
There as nice article some time ago on this site for creating mastermind game by Mike Gold. I am rewriting complete game from scratch to implement Drag and Drop feature and presentable User interface.
Space Breakout - 2D Game Developed using DirectX and C#
Apr 11, 2002.
GDI+ is a feature rich graphics API that makes sophisticated graphical effects highly accessible to the C# developers. Unfortunately if youve tried to develop smooth detailed animation using GDI+ you have undoubtedly discovered that just how slow it can be. Consequently it is not particularly suited to games development, if you want to really take advantage of your 1 gig + processor and that fancy new graphics card youre going to have to get a little more low level and dirty, enter Microsofts DirectX API.
BattleShips Games
Apr 02, 2002.
This application presents a grid of 100 squares to the user. The user has thirty five attempts to find to find the computers fleet. The computer randomly positions five ships of varying sizes around the board.
Memory Game
Mar 19, 2002.
This is a memory game where you can use your favorite pictures (.bmp, jpg, gif).
The Making of Pong
Mar 12, 2002.
The purpose of making this classic game was to show simple game structures in C#. Concepts include the Game Loop, Input and Paint. If you are just beginning in game programming, C# is turning out to be a great place to start.
Another Tetris Game in C#
Feb 22, 2002.
Here is another version of Tetris. This program uses opaque background instead of real double buffering.
C#RIS : Tetris Game in C#
Feb 14, 2002.
I have written a Tetris clone that demonstrates how to use off-screen graphics buffering for smooth animation and utilizes a multi-dimensional array approach to designing a game grid. The classes are largely self-explanatory and the techniques are documented in code well enough to explain what is going on.
Marble Solitaire Solution Display in GDI+
Feb 13, 2002.
The application finds and displays solutions to a game of solitaire. The application was written using Visual Studio.NET Version 7.0.9254. The test suite was written using NUnit, which is a .NET port of JUnit.
Drag and Drop for Board Games
Jan 22, 2002.
This application shows how the drag and drop features in C# could be used to create a simple board game or whatever.
Space Invaders in C# and .NET
Dec 23, 2001.
Yes, the classic arcade game has returned and is appearing in C# Corner complete with sound and authentic aliens and source code. It's not quite as good as the real game, but with a few adjustments it can get there.
FlashCards Language Program : How to read and save Images in a Sql Server Database using ADO.NET
Nov 09, 2001.
I thought it would be fun to write a simple program that displayed flashcards from a database and at the same time, show you how to read and write images to the database. This program is a simple flashcard program that talks to a single table in a Sql Server Database.
Hangman: Using GDI+ in ASP.NET Applications
Oct 11, 2001.
This example shows how you can combine GDI+ commands on a web form.
Image Shuffler Game in C#
Oct 01, 2001.
This game asks for a Image file to be Opened When the file is opened and shuffle button is clicked the image will be Shuffled ie rotated clockwise the task is rearrange the image in the Correct order using the button provided.
Simple Game Developed in C#
Sep 03, 2001.
This article contains the code for a simple game developed using csharp. This game is all about arranging the shuffled numbers in ascending order.
Move Grid Puzzle
Aug 15, 2001.
This is a console based application the user will be prompted for move such as L-Left, R-Right, U-Up, D-Down, E-Exit.
Get the Place Game in C#
Aug 14, 2001.
I have written a game in C# called Get the Place.
Eater Game in C#
Jul 31, 2001.
This is a simple game written in C# in which the user moves a packman like player around the form and gobbles up red dots. The object is to get all the dots in as quick a time as you can.
Tic Tac Toe
Jul 16, 2001.
TicTacToe is a demonstration of the AI game playing minimax algorithm. The game plays out every possible combination of moves from each position and consequently is unbeatable. This example uses .NET Beta 2 and was written using a text editor.
Time Ticker
Jun 26, 2001.
Graphics Class encapsulates a GDI+ drawing surface. The FromHWND method is used to create a new instance of the Graphics class from a window handle. Clear method fills the entire drawing surface with the specified RGB color by using Color class. DrawString method draws a string using Font and SolidBrush classes.
Yahtzee Program using C#
Jan 24, 2000.
The Visual C# environment has given the programmer the ability to create applications in RAD mode without the steep learning curve for the C++ programmer. (I do miss templates though!). The above application, yahtzee, is based on a popular poker-like dice game.
Shuffle Game for Beginners
Jan 05, 2000.
This code sample is a GDI+ shuffle game aimed for beginners. Attached zip file includes the exe and the Shuffle.cs file.