문제

I'm trying to convert the following line from VB to C#:

HttpContext.Current.Request.Cookies("MyCookieName")("MyProperty")

I can get the cookie:

HttpCookie httpCookie = HttpContext.Current.Request.Cookies.Get("MyCookieName");

but don't know how to get the property. Is "property" the correct word for what I am trying to get? How do I get this?

Answer:
string property = HttpContext.Current.Request.Cookies["MyCookieName"]["MyProperty"];

도움이 되었습니까?

해결책

HttpContext.Current.Request.Cookies["MyCookieName"]["MyProperty"]

That is the equivalent line in C#. Those are indexers.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top