mirror of
https://github.com/claunia/plist-cil.git
synced 2025-12-16 19:14:26 +00:00
Don't use the $ syntax
This commit is contained in:
@@ -351,7 +351,7 @@ namespace Claunia.PropertyList
|
||||
if (typeof(List<Object>).IsAssignableFrom(c))
|
||||
return Wrap(((List<Object>)o).ToArray());
|
||||
|
||||
throw new PropertyListException($"Cannot wrap an object of type {o.GetType().Name}.");
|
||||
throw new PropertyListException(string.Format("Cannot wrap an object of type {0}.", o.GetType().Name));
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user