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

SomeStruct.cs « SampleClasses « mdoc.Test « mdoc - github.com/mono/api-doc-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 74bf4c45adf74c0fba18878f1e4f94953ff7c518 (plain)
1
2
3
4
5
6
7
8
9
10
namespace mdoc.Test.SampleClasses
{
    public struct SomeStruct
    {
        public int IntMember;
        public static int StaticMember;
        public TestClass TestClassMember;
        public string Property { get; }
    }
}