📄 session.cs
字号:
using System;
using System.Collections.Generic;
using System.Text;
namespace SP_Gen.Classes
{
class Session
{
public static void SaveInSession(string Name,object Value)
{
// appdomain setup information
AppDomain currentDomain = AppDomain.CurrentDomain;
//Create a new value pair for the appdomain
currentDomain.SetData(Name, Value);
}
public static object LoadFromSession(string Name)
{
// appdomain setup information
AppDomain currentDomain = AppDomain.CurrentDomain;
return currentDomain.GetData(Name);
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -