-
-
Notifications
You must be signed in to change notification settings - Fork 3k
Closed
Labels
Milestone
Description
Hi,
I am trying to set a property (on CefSharp 1, Stable) and the property isn't changing it's value.
public class BoundObject
{
public string Name { get; set; }
public BoundObject()
{
Name = "yosy";
}
}bound.name //=> returns "yosy"
bound.name = "othername";
bound.name //=> returns "yosy"and after when inspecting the clr object the value is still "yosy".
Reactions are currently unavailable