#if NET_2_0 using System; namespace System.Xml { public class UniqueId { [MonoTODO] public UniqueId () { throw new NotImplementedException (); } [MonoTODO] public UniqueId (byte [] id) { throw new NotImplementedException (); } [MonoTODO] public UniqueId (Guid id) { throw new NotImplementedException (); } [MonoTODO] public UniqueId (string id) { throw new NotImplementedException (); } [MonoTODO] public UniqueId (byte [] id, int offset, int count) { throw new NotImplementedException (); } [MonoTODO] public UniqueId (char [] id, int offset, int count) { throw new NotImplementedException (); } [MonoTODO] public int CharArrayLength { get { throw new NotImplementedException (); } } [MonoTODO] public bool IsGuid { get { throw new NotImplementedException (); } } [MonoTODO] public override bool Equals (Object obj) { throw new NotImplementedException (); } [MonoTODO] public override int GetHashCode () { throw new NotImplementedException (); } [MonoTODO] public static bool operator == (UniqueId id1, UniqueId id2) { throw new NotImplementedException (); } [MonoTODO] public static bool operator != (UniqueId id1, UniqueId id2) { throw new NotImplementedException (); } [MonoTODO] public int ToCharArray (char [] array, int offset) { throw new NotImplementedException (); } [MonoTODO] public override string ToString () { throw new NotImplementedException (); } [MonoTODO] public bool TryGetGuid (out Guid guid) { throw new NotImplementedException (); } [MonoTODO] public bool TryGetGuid (byte [] buffer, int offset) { throw new NotImplementedException (); } } } #endif