Hi, I have an application where the ClassVelM is defined as follows:
public class ClassVelM
{
public double Velm { get; set; }
public ClassVelM(double velm)
{
this.Velm = velm;
}
}
After I create a list of classes: var mVelm = new List<ClassVelM>();
As you can refer to this in a rule?