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
Properties
Denominator
Gets or sets the denominator (beat unit).
public int Denominator { get; set; }
Property Value
Numerator
Gets or sets the numerator (beats per measure).
public int Numerator { get; set; }
Property Value
Methods
ToString()
Returns a string that represents the current object.
public override string ToString()
Returns
- string
A string that represents the current object.