Reflection source
The Reflection source is used to select using .Net Reflection. Named placeholders are evaluated against the current object. The Reflection Source can be used to extract an object from a property, field or method.
Note
When using a method, the method must be parameterless and not return void.
The following example shows how the Person
instance could be provided as an argument.
var myLocalizedString = new LocalizedString("My Table", "My Entry");
var person = new Person { Name = "Michael Scott", Age = 40 };
myLocalizedString.Arguments = new object[] { person };
Debug.Log(myLocalizedString.GetLocalizedString());