public static UID CreateUID([NotNull] Type type) { Assert.ArgumentNotNull(type, nameof(type)); return(new UIDClass { Value = ComUtils.FormatGuid(type.GUID) }); }
public static UID CreateUID(Guid guid) { return(new UIDClass { Value = ComUtils.FormatGuid(guid) }); }