4 writes to s_productName
System.Windows.Forms (4)
System\Windows\Forms\Application.cs (4)
506s_productName = ((AssemblyProductAttribute)attrs[0]).Product; 513s_productName = productName.Trim(); 524s_productName = lastDot != -1 && lastDot < ns.Length - 1 ? ns[(lastDot + 1)..] : ns; 529s_productName = type.Name;
7 references to s_productName
System.Windows.Forms (7)
System\Windows\Forms\Application.cs (7)
488if (!string.IsNullOrEmpty(s_productName)) 490return s_productName; 495if (s_productName is not null) 497return s_productName; 511if (string.IsNullOrEmpty(s_productName) && GetAppFileVersionInfo().ProductName is { } productName) 517if (string.IsNullOrEmpty(s_productName) && GetAppMainType() is { } type) 533return s_productName;