Difference between Session.Clear() vs. Session.Contents.Clear()
What is difference between Session.Clear() vs. Session.Contents.Clear()?
I want to clear all the Session 开发者_如何学编程variables.
Thanks.
According to reflector there is no difference. Session.Contents
returns the Session
object itself.
精彩评论