ASP.NET ,equivalent to PHP Print_r Function?

前端 未结 6 1887
忘了有多久
忘了有多久 2021-01-14 17:50

PHP Print_r is useful to print out array and dictionary collection. is asp.net build in this function??

6条回答
  •  感动是毒
    2021-01-14 18:23

    There's no such function in the framework base class library. If it is for debugging purposes you could set brake points in the code and analyze the values in your collection. If it is for printing it on the screen you could override the ToString method for each object. Yet another option would be to serialize the array to XML if this format is acceptable.

提交回复
热议问题