Hello
i have a very simple question , i'm new to rhino this is my class: i want to test the property with Expect.SetPropertyWithArgument
can anyone show me how, cuase i tried and its not working..
public class person
{
public string Name {get;private set;}
public person(string name)
{
Name = name;
}
}