I know there's a simple answer, I've probably read it already but it's been a long day and I'm tired. Thanks in advance.
I have an azure D365 dev machine procured through LCS.
I have a c# class library called MyCSharpProj in my solution with one class
public class x
{
public bool boolVal { get; set; }
}
I've added a reference to the project in my solution from my "Dynamics 365 for Operations" "Operations Project"
I have a class in the operations project and the following method
public void test()
{
MyCSharpProj.x testVar = new MyCSharpProj.x();
testVar.boolVal = true; // this gives an error ' Invalid token "=" '
}
What is the correct way to be able to set the value from the c# class?
*This post is locked for comments