I found how. This turned out to be very simple with DirectoryServices.AccountManagement :
using System.DirectoryServices.AccountManagement; PrincipalSearchResult<Principal> groups = UserPrincipal.Current.GetGroups(); IEnumerable<string> groupNames = groups.Select(x => x.SamAccountName);
source share