4 implementations of IReadOnlyList
mscorlib (4)
system\arraysegment.cs (1)
31
public struct ArraySegment<T> : IList<T>,
IReadOnlyList
<T>
system\collections\generic\list.cs (1)
36
public class List<T> : IList<T>, System.Collections.IList,
IReadOnlyList
<T>
system\collections\objectmodel\collection.cs (1)
21
public class Collection<T>: IList<T>, IList,
IReadOnlyList
<T>
system\collections\objectmodel\readonlycollection.cs (1)
21
public class ReadOnlyCollection<T>: IList<T>, IList,
IReadOnlyList
<T>
34 references to IReadOnlyList
mscorlib (16)
system\arraysegment.cs (1)
197
T
IReadOnlyList
<T>.this[int index]
system\rttype.cs (1)
1122
AddSpecialInterface(ref list, filter, (RuntimeType)typeof(
IReadOnlyList
<>).MakeGenericType(arrayType), false);
system\runtime\interopservices\windowsruntime\icustompropertyprovider.cs (1)
187
if (target as
IReadOnlyList
<T2> != null)
system\runtime\interopservices\windowsruntime\ireadonlylisttoivectorviewadapter.cs (8)
41
IReadOnlyList
<T> _this = JitHelpers.UnsafeCast<
IReadOnlyList
<T>>(this);
59
IReadOnlyList
<T> _this = JitHelpers.UnsafeCast<
IReadOnlyList
<T>>(this);
67
IReadOnlyList
<T> _this = JitHelpers.UnsafeCast<
IReadOnlyList
<T>>(this);
94
IReadOnlyList
<T> _this = JitHelpers.UnsafeCast<
IReadOnlyList
<T>>(this);
system\runtime\interopservices\windowsruntime\ivector.cs (1)
29
IReadOnlyList
<T> GetView(); // Really an IVectorView<T>.
system\runtime\interopservices\windowsruntime\ivectorviewtoireadonlylistadapter.cs (1)
71
typeof(
IReadOnlyList
<T>).TypeHandle.Value,
system\runtime\interopservices\windowsruntime\listtovectoradapter.cs (3)
64
internal
IReadOnlyList
<T> GetView<T>()
71
IReadOnlyList
<T> roList = _this as
IReadOnlyList
<T>;
PresentationFramework (18)
src\Framework\MS\Internal\WindowsRuntime\Windows\Data\Text\WordSegment.cs (2)
49
public
IReadOnlyList
<AlternateWordForm> AlternateForms
106
private
IReadOnlyList
<AlternateWordForm> _alternateForms = null;
src\Framework\MS\Internal\WindowsRuntime\Windows\Data\Text\WordsSegmenter.cs (1)
158
public
IReadOnlyList
<WordSegment> GetTokens(string text)
src\Framework\System\Windows\Documents\NLGSpellerInterop.cs (6)
725
public
IReadOnlyList
<ISpellerSegment> SubSegments
777
public
IReadOnlyList
<string> Suggestions
916
private
IReadOnlyList
<ISpellerSegment> _subSegments = null;
917
private
IReadOnlyList
<string> _suggestions = null;
979
public
IReadOnlyList
<ISpellerSegment> Segments
1057
private
IReadOnlyList
<ISpellerSegment> _segments;
src\Framework\System\Windows\Documents\SpellerInteropBase.cs (3)
37
IReadOnlyList
<ISpellerSegment> SubSegments { get; }
47
IReadOnlyList
<string> Suggestions { get; }
68
IReadOnlyList
<ISpellerSegment> Segments { get; }
src\Framework\System\Windows\Documents\WinRTSpellerInterop.cs (6)
1049
public
IReadOnlyList
<ISpellerSegment> SubSegments
1065
public
IReadOnlyList
<string> Suggestions
1108
private
IReadOnlyList
<string> _suggestions;
1111
private static readonly
IReadOnlyList
<ISpellerSegment> _empty;
1137
public
IReadOnlyList
<ISpellerSegment> Segments
1178
private
IReadOnlyList
<SpellerSegment> _segments;