Facebook.AppDelegate.TableViewSource.TableViewSource C# (CSharp) Method

TableViewSource() public method

public TableViewSource ( Posts p ) : System
p Posts
return System
            public TableViewSource(Posts p)
            {
                if (p == null)
                    this.posts = new Posts {data = new List<Post>()};
                else
                    this.posts = p;
            }