近期热门
粉丝0
关注 0
获赞 0
加了dll之后web连不上服务器

[U3D] 加了dll之后web连不上服务器

[复制链接]
3508 1 0 0 12年前 举报
建一个空项目,加入i18n.dll and i18n.cjk.dll(Editor/Data/Mono/lib/mono/unity下),放进Project View,且script中没用过这两个dll,在editor里可以连接服务器,生成web player版就不行,拿掉dll生成就可以,以下是我的脚本(附在一个GameObject上):void Start () {
try
{
Socket mSocket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
Debug.Log("Connecting...");
Security.PrefetchSocketPolicy("xx.xx.xx.xx", xxxx);
mSocket.BeginConnect("xx.xx.xx.xx", xxxx, new AsyncCallback(ConnectComplete), null);

Debug.Log("Connected");
}
catch (System.Exception ex)
{
Debug.Log("exception in start");
}
}

private void ConnectComplete(IAsyncResult ar)
{
try
{
Debug.Log("Enter cc");
}
catch (System.Exception ex)
{
Debug.Log("Exception in cc");
}
}


为什么会这样?怎么与dll共存……?
0
点赞
0
打赏
0
添加到收藏夹

0

点击复制链接

使用微信扫码分享
一次扣10个券
全部评论1
您需要登录后才可以回帖 登录

嗯嗯,我都要好好学习了
12年前
回复

使用道具 举报

您当前使用的浏览器IE内核版本过低会导致网站显示错误

请使用高速内核浏览器或其他浏览器