Support any type as input to identifier
Rob Mensching committed
May 8, 2019 at 23:50 UTC
50ec4f8c9dd0ec91a8bc4db4295e54710059428d
1 file changed
+6
src/WixToolset.Data/Identifier.cs
+6
@@ -40,6 +40,12 @@ namespace WixToolset.Data
40
this.Id = String.Join("/", ids);
41
}
42
43
+ public Identifier(AccessModifier access, params object[] ids)
44
+ {
45
+ this.Access = access;
46
+ this.Id = String.Join("/", ids);
47
+ }
48
+
49
public Identifier(AccessModifier access, int id)
50
{
51
this.Access = access;