I assigned some value to object data type like,
object objData =dc.GetDirectoryEntry().Properties[\"objectGUID\"].Value;
this object retun the
How about using the Guid constructor which takes a byte array?
Guid guid = new Guid(binaryData);
(You can then use Guid.ToString() to get it in text form if you need to.)
Guid.ToString()