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