Table of Contents

Class TimeSignature

Namespace
AiDotNet.Interfaces
Assembly
AiDotNet.dll

Represents a musical time signature.

public class TimeSignature
Inheritance
TimeSignature
Inherited Members

Constructors

TimeSignature(int, int)

Initializes a new time signature.

public TimeSignature(int numerator, int denominator)

Parameters

numerator int
denominator int

Properties

Denominator

Gets or sets the denominator (beat unit).

public int Denominator { get; set; }

Property Value

int

Numerator

Gets or sets the numerator (beats per measure).

public int Numerator { get; set; }

Property Value

int

Methods

ToString()

Returns a string that represents the current object.

public override string ToString()

Returns

string

A string that represents the current object.