예제 #1
0
        static void Main(string[] args)
        {
            var httpCookies = new HttpCookies();

            httpCookies.Fill();
            //httpCookies.SetCookie("username", "ahedfi000");
            httpCookies["username"] = "******";
            //Console.WriteLine(httpCookies.GetCookie("username"));
            Console.WriteLine(httpCookies["username"]);
        }
예제 #2
0
        static void Main(string[] args)
        {
            var httpCookies = new HttpCookies();

            httpCookies.Fill();
            var usrename = httpCookies.GetCookie("username");

            httpCookies.SetCookie("key", "value");

            //httpCookies["username"] = "******";
            //Console.WriteLine(httpCookies["username"]);

            var cards = new Cards();

            //cards._elements[0] = 1;k
            Console.WriteLine(cards[0]);
        }