C# show Environment property info name and value retrieve, Maximize the Console Window based on wind
2021-01-27 09:15
标签:write get null and amp cat ref prope base C# show Environment property info name and value retrieve, Maximize the Console Window based on window resolution 标签:write get null and amp cat ref prope base 原文地址:https://www.cnblogs.com/Fred1987/p/11946100.htmlusing System.Reflection;
static void ShowEnvironmentInfoDemo()
{
Type type = typeof(Environment);
PropertyInfo[] pis = type.GetProperties();
if (pis != null && pis.Any())
{
Parallel.ForEach(pis, x =>
{
Console.WriteLine($"Name:{x.Name},value:{x.GetValue(x)}");
});
}
}
static void ConsoleWindowDemo()
{
try
{
Type type = typeof(Console);
PropertyInfo[] pis = type.GetProperties();
if (pis != null && pis.Any())
{
Parallel.ForEach(pis, x =>
{
Console.WriteLine($"Name:{x.Name},Value:{x.GetValue(x)}");
});
}
}
catch
{
}
}
static void MaximizeConsoleWindow()
{
Console.SetWindowSize(Console.LargestWindowWidth, Console.LargestWindowHeight);
}
文章标题:C# show Environment property info name and value retrieve, Maximize the Console Window based on wind
文章链接:http://soscw.com/index.php/essay/47692.html