How can i draw something in C# [closed] - c#

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
i'm looking for a way to draw something (like a racing map) in C# as i do in for example paint . then pass information to a toy car to follow it. I don't need you to write a code, i just need a suggestion of the way to do it.

I think Unity might be something for you. It's a game engine with a free license, and you can program in C#.

Related

How to make a Roblox FPS Unlocker? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 months ago.
Improve this question
The title basically says it all but how how would you go about making a c# code to unlock Roblox FPS cap?
I've tried looking online but couldn't find anything myself
Someone has already made a FPS Unlocker for this game.
https://github.com/axstin/rbxfpsunlocker/releases
It is written in C++. The code is open-source so you could study it to see how it works.

How do I make a dynamic chart? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I am getting a constant stream of radio-frequency data and I want to graph it dynamically like an oscilloscope.
I am using C#. Can I use the chart class for this? Are there any readings or videos to help me learn where to start?
You might want to take a look at the MS Chart controls that come with Visual Studio.
Here's a good place to start:
https://msdn.microsoft.com/en-us/library/dd456632.aspx
...and some samples:
https://code.msdn.microsoft.com/mschart

C# Whats better to program a RPG, xna or monogame [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 9 years ago.
Improve this question
I want to make an RPG and want to know if i should use Xna or Monogame to code it. What would have a better result or easier code. I've researched a bit but still cant decide.
Since Monogame is the open source version of XNA ...
In terms of API calls / code you would have to write to do something they are basically the same and were designed to be.
That's like asking ... "should I drive a blue car or a red car?" it makes no difference since both will get you from A to B.

How to implement web camera for video conferencing in asp? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
I want to create a asp web application for video conferencing, how i can implement this?
Thanks...
In my point of view, the better support for such issue was implemented within Silverlight technology. As start point I can suggest: http://msdn.microsoft.com/en-us/library/ff602282%28v=VS.95%29.aspx
It is possible to implement your Silverlight into ASP.NET like was described here

Read text(data) in an images using c# [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
Is there a way to read text(numbers and letters) in an image using C# ? Is this possible and What is the best way to do this ?
Thanks!
http://code.google.com/p/tesseract-ocr/ has some wrapper to use it in .NET, or, simpler:
http://www.codeproject.com/KB/office/modi.aspx but you need to keep an eye to the license since it is a part of the Office suite. In both case you tipically need some pre processing for the image and, as a solution I did in the past, some post processors that using some ehuristict correct the mistaked words.

Categories