I am working on Xamarin Forms. In Content Page, I want to write some code in separate thread because app is freezing after some random interval.
In my code There is conversion of byte[] to string methods like below
BitConverter.ToString(Data); are taking time to execute, so anybody have resolution on it please share it.
Thanks in advance.
Use a Task-based thread from the thread pool via
Task.Run: