Example #1
0
        public static double ShippingPrice(string shopCode = "culture")
        {
            double result = 0;

            try
            {
                OhayooDB db = new OhayooDB();
                result = db.proShippingJapan(RakutenInfo(shopCode)).FirstOrDefault().price.Value;
            }
            catch (Exception ex) { Console.WriteLine(ex.Message); }
            return(result);
        }