A simple C# library to convert Lambert Coordinates to GPS WGS84 coordinates based on the IGN alorithms and methods
PM> Install-Package LambertCS
Point pt = Lambert.convertToWGS84Deg(668832.5384, 6950138.7285, Zone.Lambert93);
Console.WriteLine("Point latitude:{0} longitude:{1}", pt.y, pt.x);