4 writes to s_productName
System.Windows.Forms (4)
System\Windows\Forms\Application.cs (4)
468s_productName = ((AssemblyProductAttribute)attrs[0]).Product; 475s_productName = productName.Trim(); 486s_productName = lastDot != -1 && lastDot < ns.Length - 1 ? ns[(lastDot + 1)..] : ns; 491s_productName = type.Name;
7 references to s_productName
System.Windows.Forms (7)
System\Windows\Forms\Application.cs (7)
450if (!string.IsNullOrEmpty(s_productName)) 452return s_productName; 457if (s_productName is not null) 459return s_productName; 473if (string.IsNullOrEmpty(s_productName) && GetAppFileVersionInfo().ProductName is { } productName) 479if (string.IsNullOrEmpty(s_productName) && GetAppMainType() is { } type) 495return s_productName;