Execute python function from .Net plugin

IStringSignal tcpstr = (IStringSignal)comp.FindBehavior(“TCPstr”);
if(tcpstr == null)
{
tcpstr = ((ISimNode)comp).CreateBehavior(“TCPstr”);
}
IStringSignal tcpsend = (IStringSignal)comp.FindBehavior(“TCPsend”);
if (tcpsend == null)
{
tcpstr = ((ISimNode)comp).CreateBehavior(“TCPsend”);
}