[Solved] in a C# script, i am getting object reference [closed]


As indicated error message, UDPCom.sendLTDimples is non static function. So you will have to create a new object of class UDPCom and then using that object call the function.

UDPCom obj = new UDPCom();
Obj.sendLTDimples();

7

solved in a C# script, i am getting object reference [closed]