mirror of
https://github.com/ZuneDev/MicrosoftIris.git
synced 2026-07-27 13:13:29 -07:00
Override ToString on more UIX classes
This commit is contained in:
@@ -10,8 +10,8 @@ namespace Microsoft.Iris.Markup
|
||||
{
|
||||
public abstract class PropertySchema : DisposableObject
|
||||
{
|
||||
public static PropertySchema[] EmptyList = new PropertySchema[0];
|
||||
private TypeSchema _owner;
|
||||
public readonly static PropertySchema[] EmptyList = System.Array.Empty<PropertySchema>();
|
||||
private readonly TypeSchema _owner;
|
||||
|
||||
public PropertySchema(TypeSchema owner)
|
||||
{
|
||||
@@ -44,5 +44,7 @@ namespace Microsoft.Iris.Markup
|
||||
public abstract object GetValue(object instance);
|
||||
|
||||
public abstract void SetValue(ref object instance, object value);
|
||||
|
||||
public override string ToString() => $"{Owner.Name}.{Name}";
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user