System.Runtime.Versioning.FrameworkName
namespace System.Runtime.Versioning
{
public sealed class FrameworkName : IEquatable<FrameworkName>
{
public string FullName { get; }
public string Identifier { get; }
public string Profile { get; }
public Version Version { get; }
public FrameworkName(string frameworkName);
public FrameworkName(string identifier, Version version);
public FrameworkName(string identifier, Version version, string profile);
public bool Equals(FrameworkName other);
public static bool operator ==(FrameworkName left, FrameworkName right);
public static bool operator !=(FrameworkName left, FrameworkName right);
}
}