Unity.IL2CPP.Common.MonoInstall.SmartInstall C# (CSharp) Method

SmartInstall() public static method

public static SmartInstall ( DotNetProfile profile ) : MonoInstall
profile DotNetProfile
return MonoInstall
        public static MonoInstall SmartInstall(DotNetProfile profile)
        {
            if (profile == DotNetProfile.Net45)
            {
                return BleedingEdge;
            }
            return TwoSix;
        }