Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ReadOnlySpan.cs « SampleClasses « mdoc.Test « mdoc - github.com/mono/api-doc-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d63bade8061422aa12f92499334b1239065598ab (plain)
1
2
3
4
5
6
7
8

namespace mdoc.Test.SampleClasses
{
    public struct ReadOnlySpan<T>
    {
        public T this[int index] => default(T);
    }
}