Skip to content

Instantly share code, notes, and snippets.

View franksantos's full-sized avatar

Frank Santos franksantos

  • Via Sistemas Web
  • Brasil
View GitHub Profile
@timoteoramos
timoteoramos / GuidUtils.cs
Created February 16, 2017 19:05
.NET GUID Utils
using System;
public static class GuidUtils
{
public static Guid FromInt64(params long[] f)
{
byte[] result = new byte[16];
BitConverter.GetBytes (f [0]).CopyTo (result, 0);
BitConverter.GetBytes (f [1]).CopyTo (result, 8);