Same Day - CSharp System

CSharp examples for System:DateTime Day

Description

Same Day

Demo Code


using UnityEngine;
using System.Collections.Generic;
using System;//  w w  w .j a  v  a  2s.c o m

public class Main{
        public static bool SameDay(DateTime a, DateTime b) {
      return a.Date == b.Date;
    }
}

Related Tutorials