示例#1
0
 /// <summary>
 /// Initializes a new instance of <see cref="UriStrings"/> to represent the string values of elements in a <seealso cref="FileUriCollection"/>.
 /// </summary>
 /// <param name="innerList">The <seealso cref="FileUriCollection"/> to be wrapped by this list.</param>
 /// <remarks>If <paramref name="innerList"/> is null, then a new <seealso cref="FileUriCollection"/> will be created as the <seealso cref="InnerList"/>.</remarks>
 public UriStrings(FileUriCollection innerList)
 {
     InnerList = innerList ?? new FileUriCollection();
 }
示例#2
0
 /// <summary>
 /// Initializes a new instance of <see cref="UriStrings"/>.
 /// </summary>
 public UriStrings()
 {
     InnerList = new FileUriCollection();
 }