Collections of simple, basic C# programs D 4:37:00 PM Add Comment Here is some basic, simple, handy C# programs for you to enjoy and refresh your memory - using GroundCSApp; using System; using System... Read More
Finding Lowest number from a List in C# D 3:58:00 PM Add Comment Below is a simple program to find the lowest number from a list of numbers - using System; using System . Collections . Generic; name... Read More
Reading a file in C# D 3:49:00 PM Add Comment Below is a simple program in C# that reads a file and outputs the longest word in it. Enjoy! using System; using System . IO; using Sy... Read More
Using DateTime in C# D 3:43:00 PM Add Comment Below is very simple usage of DateTime - class DateTimePr { static void Main( string [] args) { v... Read More
Using LINQ in C# D 3:38:00 PM Add Comment LINQ or Language Integrated Query gives the capability to query objects and C# allows two distinctive ways to achieve this – You can eit... Read More