public
Description: REST service access using C# 4.0 dynamic programming
Homepage: http://www.nikhilk.net/CSharp-Dynamic-Programming-JSON.aspx
Clone URL: git://github.com/NikhilK/dynamicrest.git
dynamicrest / Program.cs
100644 28 lines (19 sloc) 0.488 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Program.cs
//
 
using System;
 
namespace Application {
 
    public static class Program {
 
        public static void Main(string[] args) {
            // Flickr Sample
            FlickrSample.Run();
 
            // Amazon Sample
            // AmazonSample.Run();
 
            // Live Search
            // LiveSearchSample.Run();
 
            // Google Search
            // GoogleSearchSample.Run();
 
            // JSON Sample
            // JsonSample.Run();
        }
    }
}