tags:

views:

64

answers:

2

can any on explain me what are state machines in .net

+2  A: 

If you mean Finite-state machines, they're essentially language-independent. The implementation would differ by language, of course.

TrueWill
+1  A: 

If you mean using the Yield keyword to create a state machine you can take a look at this

Note: Eric Lippert's answer contra-indicates using them.

Conrad Frix