tostring for ListUserData

This commit is contained in:
Deukhoofd 2019-01-20 23:09:08 +01:00
parent 01d408e5fd
commit 9aea17c445
No known key found for this signature in database
GPG Key ID: B4C087AC81641654
1 changed files with 4 additions and 0 deletions

View File

@ -125,5 +125,9 @@ namespace Upsilon.BaseTypes.UserData
return Equals((ListUserData) obj);
}
public override string ToString()
{
return string.Join(", ", List);
}
}
}