📄 online.cs
字号:
using System;
using System.Collections.Generic;
using System.Text;
using System.Collections;
using agsXMPP;
namespace server
{
class Online
{
static public ArrayList onlineuser=new ArrayList();
static public ArrayList onlinemeeting=new ArrayList();
}
class Meeting
{
public Meeting(Jid jid, string password)
{
this.jid = jid;
this.password=password;
}
public Jid jid;
public string password;
public ArrayList userinmeeting = new ArrayList();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -