2025-06-08 00:39:11 +09:00

30 lines
483 B
C#

using NUnit.Framework;
using System.Collections;
using System;
namespace UniJSON
{
public class GenericCallUtilityTests
{
class Sample
{
public int Value
{
get;
private set;
}
public void Set(int value)
{
Value = value;
}
public int Get(int _)
{
return Value;
}
}
}
}