My goal is to make an android application, which prints a "hello world" text to logcat from C#. I'm thinking of something like this in C#:
using MyLibrary;
namespace Hello
{
public class HelloWorldClass
{
public HelloWorldClass()
{
MyLibrary.print("hello world");
}
}
}
then in eclipse project:
import Hello;
public class MainActivity extends Activity
{
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Hello something = new Hello(); // it would print "hello world" to logcat
}
}
how can I create that "MyLibrary"? Any related links, references or something that could help?