Translate from C# to VB

Posted by Congero on Stack Overflow See other posts from Stack Overflow or by Congero
Published on 2010-03-23T19:50:19Z Indexed on 2010/03/23 19:53 UTC
Read the original article Hit count: 148

Filed under:
|

How do you convert the following c# code to vb.net?

 private static readonly ICollection<string>
            _skipHeaders
                = new[]
                      {
                          "Connection",
                          "Keep-Alive",
                          "Accept",
                          "Host",
                          "User-Agent",
                          "Content-Length",
                          "Content-Type",
                          "Accept-Encoding",
                          "Authorization",
                          "Referer",                          
                          ProxyMethodHeader,
                          ProxyAuthorizationHeader,
                          ProxyAcceptHeader,
                          ProxyAgentHeader,
                          ProxyQueryHeader
                      };

© Stack Overflow or respective owner

Related posts about convert

Related posts about c#-to-vb.net