internal static ElfInfo GetElfInfo()

in JetBrains.HabitatDetector/src/Impl/Linux/LinuxHelper.cs [17:21]


    internal static ElfInfo GetElfInfo(string executable = DefaultExecutable)
    {
      using var stream = File.OpenRead(executable);
      return GetElfInfo(stream);
    }