×

C# Tutorial

Basics of .Net

C# Basics

C# Fundamentals

C# Operators

C# Loops

C# Type Conversions

C# Exception Handling

C# String Class

C# Arrays

C# List

C# Stack

C# Queue

C# Collections

C# Character Class

C# Class and Object

C# Namespaces

C# Delegates

C# Constructors

C# Inheritance

C# Operator Overloading

C# Structures

C# File Handling

C# Convert.ToInt32()

C# Int32 (int) Struct

C# DateTime Class

C# Uri Class

C# Database Connectivity

C# Windows

C# Other Topics

C# Q & A

C# Programs

C# Find O/P

C# - TimeSpan.UnaryNegation(TimeSpan) Operator with Example

In this tutorial, we will learn about the C# TimeSpan.UnaryNegation(TimeSpan) operator with its definition, usage, syntax, and example. By Nidhi Last updated : March 30, 2023

TimeSpan.UnaryNegation(TimeSpan) Operator

The TimeSpan.UnaryNegation(TimeSpan) is overloaded using operator overloading. This operator overloaded method returns TimeSpan whose value is negated of the specified instance.

Syntax

TimeSpan TimeSpan.operator-(TimeSpan timeSpan);

Parameter(s)

  • timeSpan: Specified instance of TimeSpan.

Return Value

This method returns TimeSpan whose value is negated of the specified instance of TimeSpan.

Exception(s)

  • System.OverflowException

C# Example of TimeSpan.UnaryNegation(TimeSpan) Operator

The source code to demonstrate the unary minus (-) operator with TimeSpan structure is given below. The given program is compiled and executed successfully.

using System;

class TimeSpanDemo {
  //Entry point of Program
  static public void Main() {
    TimeSpan timeInterval = new TimeSpan(4, 10, 15);
    Console.WriteLine(+timeInterval);
  }
}

Output

-04:10:15
Press any key to continue . . .

C# TimeSpan Programs »



Advertisement
Advertisement


Comments and Discussions!

Load comments ↻


Advertisement
Advertisement
Advertisement

Copyright © 2025 www.includehelp.com. All rights reserved.