/// <summary> /// Get instance of this Singleton class. /// </summary> /// <returns></returns> public static FeedManager GetInstance() { if (_instance == null) { _instance = new FeedManager(); } return _instance; }
/// <summary> /// Get instance of this Singleton class. /// </summary> /// <returns></returns> public static FeedManager GetInstance() { if (_instance == null) { _instance = new FeedManager(); } return(_instance); }