Answers for "c# how to do any time"

C#
1

simple time c#

public float timeLeft = 20.0f; //you can change this aswell

void Update()
{
timeLeft -= Time.deltaTime; //you can change this to just removing a number
            if (timeLeft < 0)
            {
            //Method here
            timeLeft += 20.0f; //change this to what you want
            }
}
Posted by: Guest on February-23-2021
1

C# time

//assigns default value 01/01/0001 00:00:00
DateTime dt1 = new DateTime(); 

//assigns year, month, day
DateTime dt2 = new DateTime(2015, 12, 31); 

//assigns year, month, day, hour, min, seconds
DateTime dt3 = new DateTime(2015, 12, 31, 5, 10, 20);
 
//assigns year, month, day, hour, min, seconds, UTC timezone
DateTime dt4 = new DateTime(2015, 12, 31, 5, 10, 20, DateTimeKind.Utc);
Posted by: Guest on May-26-2021

C# Answers by Framework

Browse Popular Code Answers by Language