I need Help with async Task.

1

When I create a method it appears in red and I get that error from the image. please someone help me?

    
asked by Joel Rm 22.05.2018 в 17:19
source

1 answer

2

What tries to tell you the compilation error is that the class Response is less accessible than the method CheckConnection .

Since your method is public the class Response must also be public . It's probably like internal .

You can read more about this here: link

    
answered by 22.05.2018 в 17:22