1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
public partial class maPage{
protected void Page_Load(object sender, EventArgs e)
{
Singleton.GetInstance().dictionary.add(idUser, Value);
}
public sealed class Singleton
{
private static Singleton instance = null;
private static readonly object padlock = new object();
private static Dictionary<int, monType> _dictionary = null;
Singleton()
{
_dictionary = new Dictionary<int, monType>();
}
public static Singleton GetInstance()
{
lock (padlock)
{
if (instance == null )
{
instance = new Singleton();
}
return instance;
}
}
public Dictionary<int,monType> dictionary
{
get { return _dictionary; }
}
}
} |
Partager