4 writes to s_productName
System.Windows.Forms (4)
System\Windows\Forms\Application.cs (4)
580
s_productName
= ((AssemblyProductAttribute)attrs[0]).Product;
587
s_productName
= productName.Trim();
598
s_productName
= lastDot != -1 && lastDot < ns.Length - 1 ? ns[(lastDot + 1)..] : ns;
603
s_productName
= type.Name;
7 references to s_productName
System.Windows.Forms (7)
System\Windows\Forms\Application.cs (7)
562
if (!string.IsNullOrEmpty(
s_productName
))
564
return
s_productName
;
569
if (
s_productName
is not null)
571
return
s_productName
;
585
if (string.IsNullOrEmpty(
s_productName
) && GetAppFileVersionInfo().ProductName is { } productName)
591
if (string.IsNullOrEmpty(
s_productName
) && GetAppMainType() is { } type)
607
return
s_productName
;