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

C.cs « TestData2 « sandbox - github.com/aspnet/MessagePack-CSharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 079c171e6e69c701a3b6903f6ed200e1771482ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright (c) All contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

using MessagePack;

#pragma warning disable SA1307 // Accessible fields should begin with upper-case letter
#pragma warning disable SA1401 // Fields should be private

namespace TestData2
{
    [MessagePackObject(true)]
    public class C
    {
        public B b; public int a;
    }
}