Simplified usages in UIX project

This commit is contained in:
Joshua Askharoun
2021-04-02 19:10:51 -05:00
parent 2b20ca46ad
commit c07b53bb0b
464 changed files with 14054 additions and 14064 deletions
@@ -13,12 +13,12 @@ namespace Microsoft.Iris
{
private IDictionary<string, int> _propertyNameToId;
public SimpleAnimationPropertyMap(IDictionary<string, int> propertyNameToId) => this._propertyNameToId = propertyNameToId;
public SimpleAnimationPropertyMap(IDictionary<string, int> propertyNameToId) => _propertyNameToId = propertyNameToId;
public uint GetPropertyId(string propertyName)
{
int num;
this._propertyNameToId.TryGetValue(propertyName, out num);
_propertyNameToId.TryGetValue(propertyName, out num);
return (uint)num;
}