Xceed.Wpf.Toolkit.PrimitiveTypeCollectionControl.CreateItemsSource C# (CSharp) Method

CreateItemsSource() private method

private CreateItemsSource ( ) : IList
return IList
    private IList CreateItemsSource()
    {
      IList list = null;

      if( ItemsSourceType != null )
      {
        ConstructorInfo constructor = ItemsSourceType.GetConstructor( Type.EmptyTypes );
        list = ( IList )constructor.Invoke( null );
      }

      return list;
    }