System.OverflowException: 'Arithmetic operation resulted in an overflow.'
AndyDillbeck opened this issue · 0 comments
AndyDillbeck commented
Running into a problem with the BoardID in MondayService.GetBoardWithItems being too long for an Int.
Dim boardID As Long
Using client = New MondayClient(apiToken, apiRoot)
Dim service = New MondayService(client)
boardID = 3038837111 '<---- this board id is too long to for an Int
Dim boardS As Board = service.GetBoardWithItems(boardID) '<---- Trying to stuff a Long into an Int give the error 'Arithmetic operation resulted in an overflow.'
End Using