public void Emit() { TestBechmark instance = new TestBechmark(); EmitSetString(instance, "123456789"); }
public void Dynamic() { TestBechmark instance = new TestBechmark(); RunDynamic(instance); }
public void Reflect() { TestBechmark instance = new TestBechmark(); NameInfo.SetValue(instance, "123456789"); }
public void Origin() { TestBechmark instance = new TestBechmark(); instance.Name = "123456789"; }