Click here to Skip to main content
15,893,381 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
how to learn real time coding in c#?
how to develop coding in c#?
overall information i want plz help me....
i do't know how to write real time coding in c#
Posted
Updated 7-Dec-15 0:11am
v2
Comments
Mehdi Gholam 6-Dec-15 12:06pm    
Generally "real time" applications don't run on managed systems which by definition have many layers and don't react in a real time way.
Sergey Alexandrovich Kryukov 6-Dec-15 12:10pm    
Just forget it. No real time for you.
—SA
I don't understand this question.
PIEBALDconsult 6-Dec-15 12:42pm    
First, you need a real-time operating system. Windows is not one.
http://www.ni.com/white-paper/3938/en/
Suvendu Shekhar Giri 6-Dec-15 15:10pm    
:D looks like incorrect & confusing pharses/words used by the OP.

1 solution

There are a few obstacles if you want to create a real-time system using .NET
1. The languages (C# for instance) has no support for direct access of the machine resources, but work via software layers...
2. The main operating system (Windows) itself not too good for real-time systems...

With these, there are different levels of real-time and you may create a system appropriate for you if you can define how real-time it should be. (Remember, that as today you may compile your C# code to native and gain some performance, but that will not remove the software layers).

If you already know C# I would advise to move on (back?) to C - there is a definitive advantage there over managed languages for you and for real-time...
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900