AdminSep 281 min readObtain components dimensions with hm_getboundingboxIn hypermesh getting the values of the panel dimension are important for hand calculations or reporting the comps properties....
AdminJun 231 min readSimple for loop in C#To write all the number from 0 to 10 for (int i = 1; i <= 10; i++) { Console.Write($"{i} "); } output: 1 2 3 4 5 6 7 8 9 10 To write all...
AdminJun 231 min readSwicth Case Example for C#This console application use switch&case for detecting the day type which represents the simple example for C# Console.WriteLine("type a...
AdminJun 231 min readC# Conditions and IF statements exampleHere is a simple console application for letter grade calculation. using System.Numerics; Console.WriteLine("MidTerm Grade:"); byte...