We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
visualizing the mem variable in Using mem As New System.IO.MemoryStream(My.Resources.Bill_of_Lading) I get this linqpad script.
Using mem As New System.IO.MemoryStream(My.Resources.Bill_of_Lading)
void Main() { Truck truck = new Truck("LINQBridgeVsTruck"); truck.WaitDelivery("MemoryStream").Wait(); var @object = truck.UnLoadCargo<IO.MemoryStream>(); @object.Dump("IO.MemoryStream", 2); }
It should be
void Main() { Truck truck = new Truck("LINQBridgeVsTruck"); truck.WaitDelivery("MemoryStream").Wait(); var @object = truck.UnLoadCargo<System.IO.MemoryStream>(); @object.Dump("IO.MemoryStream", 2); }
The text was updated successfully, but these errors were encountered:
Thanks for reporting the issue, I will put a fix for this
Sorry, something went wrong.
#43
4d92210
puts System back in and add System.IO to the exclusion list
fixed and available in the upcoming release
#43 adds all system namespaces to properly filter
dde11f4
fixes a bug reading pdbs, which in production environment is not needed
codingadventures
No branches or pull requests
visualizing the mem variable in
Using mem As New System.IO.MemoryStream(My.Resources.Bill_of_Lading)
I get this linqpad script.It should be
The text was updated successfully, but these errors were encountered: