OpenTween.TweenMain.GetCurTabPost C# (CSharp) Method

GetCurTabPost() private method

private GetCurTabPost ( int Index ) : PostClass
Index int
return PostClass
        private PostClass GetCurTabPost(int Index)
        {
            var listCache = this._listItemCache;
            if (listCache != null)
            {
                ListViewItem item;
                PostClass post;
                if (listCache.TryGetValue(Index, out item, out post))
                    return post;
            }

            return _statuses.Tabs[_curTab.Text][Index];
        }
TweenMain