C# Program to Get Current Day of Week

Ankith Reddy
Updated on 23-Jun-2020 07:31:14

16K+ Views

Use DateTime. DayOfWeek property to display the current day of week.DayOfWeek wk = DateTime.Today.DayOfWeek;Now, displaying “wk” would give you the current day of the week.Let us see the complete code to get the current day of week.Example Live Demousing System; using System.Linq; public class Demo {    public static void Main() {       DayOfWeek wk = DateTime.Today.DayOfWeek;       Console.WriteLine(wk);    } }OutputWednesday

Check Sequence Elements Satisfy Condition in C#

karthikeya Boyini
Updated on 23-Jun-2020 07:30:47

378 Views

Use All() Method to check whether the elements of a sequence satisfy a condition or not. Even if one of the element do not satisfy the set condition, the All() method returns False.To set conditions, use Lambda Expressions. Below shows a condition to check whether all the elements are greater than 20 or not.myArr.AsQueryable().All(val => val > 20);Let us see an example.Example Live Demousing System; using System.Linq; class Demo {    static void Main() {       int[] myArr = {7, 15, 22, 30, 40};       // checking if all the array elements are greater than 20       bool res = myArr.AsQueryable().All(val => val > 20);       Console.WriteLine(res);    } }OutputFalse

Initialize an Empty DateTime in C#

Samual Sam
Updated on 23-Jun-2020 07:30:24

3K+ Views

Set a DateTime to its minimum value.DateTime.MinValue;The above will display the minimum value i.e.1/1/0001Let us see how to display the minimum value and avoid adding null to a date to initialize it as empty.Example Live Demousing System; using System.Linq; public class Demo {    public static void Main() {       DateTime dt = DateTime.MinValue;       Console.WriteLine(dt);    } }Output1/1/0001 12:00:00 AM

Generate Current Month in C#

George John
Updated on 23-Jun-2020 07:29:56

11K+ Views

To display current month, firstly use “Now“ to get the current date.DateTime dt = DateTime.Now;Now, use the Month property to get the current month.dt.MonthLet us see the complete code.Example Live Demousing System; using System.Linq; public class Demo {    public static void Main() {       DateTime dt = DateTime.Now;       Console.WriteLine(dt.Month);    } }Output9To display current month’s name.Example Live Demousing System; using System.Linq; public class Demo {    public static void Main() {       DateTime dt = DateTime.Now;       Console.WriteLine(dt.ToString("MMM"));    } }OutputSep

C# DateTime Max Value

Chandu yadav
Updated on 23-Jun-2020 07:29:21

6K+ Views

To set the max value for a Date, use the DateTime property MaxValue.DateTime max = DateTime.MaxValue;Now, display the value of max to get the maximum value of a date as shown below.Example Live Demousing System; using System.Linq; public class Demo {    public static void Main() {       DateTime max = DateTime.MaxValue;       Console.WriteLine(max);    } }Output12/31/9999 11:59:59 PM

C# General Date Short Time G Format Specifier

karthikeya Boyini
Updated on 23-Jun-2020 07:28:58

409 Views

The Generate Date Short Time format specifier is a combination of the short date ("d") and short time ("t") patterns, separated by a space.Set a date using DateTime.DateTime dt = new DateTime(2018, 10, 2, 7, 59, 20);Now, use the (“g”) format specifier.dt.ToString("g", DateTimeFormatInfo.InvariantInfo));Example Live Demousing System; using System.Globalization; class Demo {    static void Main() {       DateTime dt = new DateTime(2018, 10, 2, 7, 59, 20);       Console.WriteLine(dt.ToString("g", DateTimeFormatInfo.InvariantInfo));       Console.WriteLine(dt.ToString("g", CultureInfo.CreateSpecificCulture("en-us")));    } }Output10/02/2018 07:59 10/2/2018 7:59 AM

Return Specified Number of Elements from the End of an Array in C#

Arjun Thakur
Updated on 23-Jun-2020 07:28:31

207 Views

Use the TakeLast() method to return elements from the end of an array.Let us first declare and initialize an array.int[] prod = { 110, 290, 340, 540, 456, 698, 765, 789};Now, let’s get the last three elements.IEnumerable units = prod.AsQueryable().TakeLast(3);Let us see the complete code.Example Live Demousing System; using System.Linq; using System.Collections.Generic; public class Demo {    public static void Main() {       int[] prod = { 110, 290, 340, 540, 456, 698, 765, 789};       // value of last three products       IEnumerable units = prod.AsQueryable().TakeLast(3);       foreach (int res in units) {          Console.WriteLine(res);       }    } }Output698 765 789

C# TimeSpan Min Value

Samual Sam
Updated on 23-Jun-2020 07:27:41

544 Views

Timespan shows the length of time.To get the minimum value of TimeSpan, use the following property.TimeSpan.MinValueExample Live Demousing System; using System.Linq; public class Demo {    public static void Main() {       Console.WriteLine(TimeSpan.MinValue);    } }Output-10675199.02:48:05.4775808

Access Document Properties Using IE4 DOM Method

Smita Kapse
Updated on 23-Jun-2020 07:27:28

159 Views

This IE4 document object model (DOM) introduced in Version 4 of Microsoft's Internet Explorer browser. IE 5 and later versions include support for most basic W3C DOM features.ExampleTo access document properties using IE4 DOM method, try to run the following code −           Document Title                                     This is main title       Click the following to see the result:                                                                

C# TimeSpan Max Value

Ankith Reddy
Updated on 23-Jun-2020 07:27:05

1K+ Views

Timespan shows the length of time.To get the maximum value of TimeSpan, use the following property.TimeSpan.MaxValueExample Live Demousing System; using System.Linq; public class Demo {    public static void Main() {       Console.WriteLine(TimeSpan.MaxValue);    } }Output10675199.02:48:05.4775807

Advertisements