Tagged Questions
12
votes
3answers
2k views
VB.NET Turning Option Strict Off In-Line
Is there a way to turn option strict off for just a single line of code?
I'm doing some maintenance work and I need to "cheat" in just one place and I don't want to lower the standard for the ...
1
vote
3answers
191 views
Why does the compiler think this is an Object instead of a DataRow?
I'm using a LINQ query to translate data inside a DataTable object to be a simple IEnumerable of a custom POCO object.
My LINQ query is:
Dim dtMessages As DataTable
'...dtMessages is ...
0
votes
1answer
32 views
How to set DataGridViewCell.Value with Option Strict On
How to test for DataGridViewCell.Value with Option Strict On?
If DataGridViewCell.Value = "some value" then
Gives the error:
Option Strict On disallows operands of type Object for operator '='. ...