I recently changed from PHP to learn C#. I am trying to code a project for Bluetooth communication with framework 32feet. How to understand '(Stream)' in the code below? Thanks in advance!
private void ReadMessagesToEnd_Runner(object state)
{
Stream peer = (Stream)state;
ReadMessagesToEnd(peer);
}