obfuz/Tests~/ParamPad/libB/Thing.cs

2 lines
89 B
C#
Raw Normal View History

namespace Shared { public class Thing { public int V; public Thing(int v) { V = v; } } }