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 EventSchema : DisposableObject
|
||||
{
|
||||
private TypeSchema _owner;
|
||||
public static EventSchema[] EmptyList = new EventSchema[0];
|
||||
private readonly TypeSchema _owner;
|
||||
public readonly static EventSchema[] EmptyList = System.Array.Empty<EventSchema>();
|
||||
|
||||
public EventSchema(TypeSchema owner)
|
||||
{
|
||||
@@ -22,5 +22,7 @@ namespace Microsoft.Iris.Markup
|
||||
public TypeSchema Owner => _owner;
|
||||
|
||||
public abstract string Name { get; }
|
||||
|
||||
public override string ToString() => $"{_owner.Name}.{Name}";
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user