All Questions
59 questions
1
vote
1
answer
785
views
Text-based console game
I'm currently learning C# in hopes of making games on my own using Unity.
I'm using the Udemy class by Denis Panjuta and followed 8 sections before making my first app by myself.
The 8 sections ...
2
votes
1
answer
351
views
A program to check the age of a movie attendee (C# Yellow Book excersize)
I am currently working through the C# Yellow Book, as a first step in self directed learning. I'm supplementing that with C#8 In a Nutshell, and general searches of the Microsoft C# language ...
3
votes
3
answers
394
views
Robot Name - Exercise
Robot Name
Manage robot factory settings.
When robots come off the factory floor, they have no name.
The first time you boot them up, a random name is generated in the format
of two ...
3
votes
0
answers
1k
views
POLYMORPHISM - Design a database connection and command
> Exercise 1: Design a database connection
To access a database, we need to open a connection to it first and close it once our job is done.
Connecting to a database depends on the type of the ...
1
vote
2
answers
1k
views
Generic Implementation for Paging Class in c#
I have created one generic Page class for store paging information with its data.
The class look like:
...
10
votes
1
answer
1k
views
Convert to dictionary
Earlier I did post with full code about Prepare and export data to MS Word file. The user t3chb0t recommended me to separate some part of full code to this post.
Context
The task of code for review ...
5
votes
1
answer
184
views
Prepare and export data to MS Word file
The task of the code that is presented for review is to prepare all the data for the export of the selected contract and create a file on this basis.
This is one of the first experiences with a ...
5
votes
1
answer
113
views
Page-by model of data output and search results with values for UI
This is my first experience of designing classes with inheritance. I would like to get feedback on the interaction between the presented classes. It is unlikely that this code will seem complicated. ...
5
votes
3
answers
2k
views
Object-oriented design implementation of an Elevator
I am a newbie when it comes to Object Oriented Programming and I have read a lot of online articles and lessons so I want to try it out on my own. I've written a console app in C# and tried ...
1
vote
2
answers
511
views
Object-oriented implementation on Expense Tracking App [closed]
I am creating a Expense Tracking Application in C# and right now I am trying to build its building blocks in a console app. I Would like to know your feedback if it is in a Object Oriented Design/...
4
votes
1
answer
2k
views
Beginner c# snake game
I just started using c# and I made this snake game in a console application . It is a bit jittery when i run it in visual studio. How could I improve it to be cleaner and less jittery.
...
2
votes
0
answers
86
views
Total steps of of long process, track completed steps, reuse query [closed]
I have some long-time method (PrintInfo).
I need to know total steps of that method and track completed parts.
How to reuse same filtered query in:
TotalSteps (ex, Program: progressMonitor....
4
votes
2
answers
360
views
C# classes for adding form components dynamically
I'm currently reading on how to implement design patterns. I'm trying to implement the design patterns but need help on whether my understanding is correct.
I have a windows form in C# project that ...
4
votes
2
answers
154
views
Find SuburbName from latlong or location
I have create one class and interface for finding SuburbName based on Location or LatLong coordinates.
My interface
...
9
votes
3
answers
4k
views
Address book console application
I have been taking some C# online courses the last couple of weeks in order to learn programming. Since I dont have any friends that are programming I found it hard to get feedback / reviews on the ...