I'm trying to build an app that call a method in activity
when a certain data is received from server, I use socket
for my conection to server and when a certain message recived it calls Task3
which I want to call a method in activity, this is a part of my code for data ,which is a shared code to use in ios
and android
what should I do ?
public string Task3(ClientClass NCC)
{
string servermessage = ByteToString(NCC.NetMessageResived);
}