Liverpoololympia.com

Just clear tips for every day

Year: 2022

What is UL flammability rating?

What is UL flammability rating? UL 94 is a plastics flammability standard released by the Underwriters Laboratories (USA). The standard classifies plastics according to how they burn in various orientations and part thicknesses from the lowest flame-retardant to most flame-retardant Read more…

How to get the logged on user Windows c#?

How to get the logged on user Windows c#? “c# get current windows logged user” Code Answer’s foreach (System. Management. ManagementObject Process in Processes. Get()) string[] OwnerInfo = new string[2]; Process. InvokeMethod(“GetOwner”, (object[])OwnerInfo); Console. WriteLine(string. Format(“Windows Logged-in Interactive UserName={0}”, OwnerInfo[0])); Read more…