summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/input/cs/UNI-36862.cs
blob: cb3cb448c81e2036a58afbf949fe1300bdfa6348 (plain)
1
2
3
4
5
6
7
8
9
10
public unsafe struct QueryKeyNameCommand : IInputDeviceCommandInfo
{
    public string ReadKeyName()
    {
        fixed(QueryKeyNameCommand* thisPtr = &this)
        {
            return StringHelpers.ReadStringFromBuffer(new IntPtr(thisPtr->nameBuffer), kMaxNameLength);
        }
    }
}