You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Setting the format inside the constructor of table.Write to Format.Alternative, causes a null reference exception to be thrown. Happening somewhere in ToStringAlternative() method
System.NullReferenceException: Object reference not set to an instance of an object.
at ConsoleTables.ConsoleTable.ToStringAlternative()
at ConsoleTables.ConsoleTable.Write(Formatformat)
The text was updated successfully, but these errors were encountered:
Error Message:
System.NullReferenceException : Object reference not set to an instance of an object.
Stack Trace:
at ConsoleTables.ConsoleTable.ToStringAlternative()
System.NullReferenceException
HResult=0x80004003
Message=Object reference not set to an instance of an object.
Source=ConsoleTables
StackTrace:
at ConsoleTables.ConsoleTable.ToStringAlternative() in /home/runner/work/ConsoleTables/ConsoleTables/src/ConsoleTables/ConsoleTable.cs:line 254
at Program.<>c__DisplayClass0_0.<<
$>g__Print|3>d.MoveNext() in .....\Program.cs:line 89
at System.Threading.Tasks.Task.<>c.b__128_1(Object state) in System.Threading.Tasks\Task.cs:line 1936
at System.Threading.ThreadPoolWorkQueue.Dispatch() in System.Threading\ThreadPoolWorkQueue.cs:line 690
at System.Threading.PortableThreadPool.WorkerThread.WorkerThreadStart() in System.Threading\PortableThreadPool.cs:line 1328
Setting the format inside the constructor of
table.Write
toFormat.Alternative
, causes a null reference exception to be thrown. Happening somewhere inToStringAlternative()
methodThe text was updated successfully, but these errors were encountered: