Add project files.
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
namespace Compat.Runtime.Serialization
|
||||
{
|
||||
internal class IntRef
|
||||
{
|
||||
private readonly int _value;
|
||||
|
||||
public IntRef(int value)
|
||||
{
|
||||
_value = value;
|
||||
}
|
||||
|
||||
public int Value => _value;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user