Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ FullName

string System.Runtime.Versioning.FrameworkName.FullName
get

Definition at line 21 of file FrameworkName.cs.

22 {
23 get
24 {
25 if (_fullName == null)
26 {
27 _fullName = (string.IsNullOrEmpty(Profile) ? $"{Identifier}{",Version=v"}{Version}" : $"{Identifier}{",Version=v"}{Version}{",Profile="}{Profile}");
28 }
29 return _fullName;
30 }
31 }

Referenced by System.Runtime.Versioning.FrameworkName.ToString().