You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// <summary>/// Create a <see cref="ReadOnlyIListView{T}"/> from <paramref name="source"/>./// </summary>/// <typeparam name="T">The type of the items in the collection.</typeparam>/// <param name="source">The source collection.</param>/// <param name="leaveOpen">True means that the <paramref name="source"/> is not disposed when this instance is disposed.</param>publicstaticReadOnlyIListView<T>AsReadonlyIListView<T>(thisIReadOnlyObservableCollection<T>source,boolleaveOpen=false){returnnewReadOnlyIListView<T>(source,leaveOpen);}
After:
/// <summary>/// Create a <see cref="ReadOnlyIListView{T}"/> from <paramref name="source"/>./// </summary>/// <typeparam name="T">The type of the items in the collection.</typeparam>/// <param name="source">The source collection.</param>/// <param name="leaveOpen">True means that the <paramref name="source"/> is not disposed when this instance is disposed.</param>/// <returns>A <see cref="ReadOnlyIListView{T}"/>.</returns>publicstaticReadOnlyIListView<T>AsReadonlyIListView<T>(thisIReadOnlyObservableCollection<T>source,boolleaveOpen=false){returnnewReadOnlyIListView<T>(source,leaveOpen);}
The text was updated successfully, but these errors were encountered:
Before:
After:
The text was updated successfully, but these errors were encountered: