fflush
-
Hi. How could I flush the input buffer in C++/CLI? :doh:(in a Console Application of course):->. Like
fflush(stdin)
does in C. Thank you.Demian. "I have always wished that my computer would be as easy to use as my telephone. My wish has come true. I no longer know how to use my telephone." -Bjarne Stroustrup, computer science professor, designer of C++ programming language (1950- )
-
Hi. How could I flush the input buffer in C++/CLI? :doh:(in a Console Application of course):->. Like
fflush(stdin)
does in C. Thank you.Demian. "I have always wished that my computer would be as easy to use as my telephone. My wish has come true. I no longer know how to use my telephone." -Bjarne Stroustrup, computer science professor, designer of C++ programming language (1950- )
Demian Panello wrote:
Like fflush(stdin) does in C.
What about using
System::IO::FileStream::Flush()
?Prasad Notifier using ATL | Operator new[],delete[][^]
-
Demian Panello wrote:
Like fflush(stdin) does in C.
What about using
System::IO::FileStream::Flush()
?Prasad Notifier using ATL | Operator new[],delete[][^]
Thank you Prasad.
Demian. "I have always wished that my computer would be as easy to use as my telephone. My wish has come true. I no longer know how to use my telephone." -Bjarne Stroustrup, computer science professor, designer of C++ programming language (1950- )