Is there a way to get the expression in a string in vb.net
Posted
by
Jim Thio
on Stack Overflow
See other posts from Stack Overflow
or by Jim Thio
Published on 2012-11-09T08:43:18Z
Indexed on
2012/11/09
17:00 UTC
Read the original article
Hit count: 182
LogEvents(System.Text.Encoding.UTF8.GetString(queryPlaces.ToBson))
I want to be able to output not just the content of System.Text.Encoding.UTF8.GetString(queryPlaces.ToBson) but also the actual string of System.Text.Encoding.UTF8.GetString(queryPlaces.ToBson)
itself, perhaps with line numbers and file names.
I know that I can do this easily with objective-c. How can I do that with .net?
I've heard that that's what reflextion is for. But how?
There is no macro in vb.net right?
© Stack Overflow or respective owner