Example #1
0
		public static object GetInstance(PathBase obj)
		{
			if (ReferenceEquals(obj, null))
				return null;
			return obj._Instance;
		}
Example #2
0
 public DrawablePath(IEnumerable <PathBase> paths)
     : base(AssemblyHelper.CreateInstance(Types.DrawablePath, new Type[] { Types.IEnumerablePathBase }, PathBase.CastIEnumerable(paths)))
 {
 }