Interwał UUID z kodem c #

Czy c # donet może generować ten sam UUID dla następującego kodu java? Jeśli tak to jak? Próbowałem GUID, ale nie działa!

Tekst:

String cleartext = "CN=CompanyName;mac=some mac;@host=somehost;[email protected];issued=01/01/20013;expire=12/12/2013";

Kod Java:

UUID uuid = UUID.nameUUIDFromBytes(cleartext.getBytes("UTF-8"));

Kod C #:

byte[] b = System.Text.Encoding.UTF8.GetBytes(cleartext);
        Guid uid = new Guid(b);
        Console.Write(uid.ToString());

REFWcześniejsze dyskusje

questionAnswers(3)

yourAnswerToTheQuestion