Hi I am looking at some example codes online regarding an app I am trying to make. However as it is in C# I have to convert it to VB.net as thats the language I need to use. The following methods I have not really seen before so I dont know how to convert them. I tried using online converting tools but they seem to give me codes full of errors (I dont think it recognises the format)
Play += (_, __) =>
{
//Do something here
};
camRecorder.Initialized += (___, ____) =>
{
//Do something here
};
new Thread(() =>
{
//Do something here
}).Start();
I would really appreciate it if someone can help me. Thanks
Updated code, hope this will be ok.