LyricsEngine.LRC.SimpleLRCTimeAndLine.SimpleLRCTimeAndLine C# (CSharp) Method

SimpleLRCTimeAndLine() public method

public SimpleLRCTimeAndLine ( int min, int sec, int msec, string line ) : System
min int
sec int
msec int
line string
return System
        public SimpleLRCTimeAndLine(int min, int sec, int msec, string line)
        {
            _min = min;
            _sec = sec;
            _msec = msec;
            _line = line;
        }