06 2015 档案

摘要:I've develop a test application in Xamarin Studio (Android with C#) and wanted to test it on my phone.The application worked just fine in the Device e... 阅读全文
posted @ 2015-06-27 11:13 遥望星空 阅读(293) 评论(0) 推荐(0) 编辑
摘要:Becuase monotouch compile to native code, so it has some limitation such as dynamic invoke is not allowed.But I have a lot class in .net, that I use t... 阅读全文
posted @ 2015-06-26 20:20 遥望星空 阅读(1142) 评论(0) 推荐(0) 编辑
摘要:Android调试时,出现快盘加载失败问题。调试输出如下:Fast dev didn't succeed, trying another location解决办法:将项目属性-》Android Options ->Use FastDeployment(debug mode onl)的勾勾去掉。 阅读全文
posted @ 2015-06-26 01:26 遥望星空 阅读(436) 评论(0) 推荐(0) 编辑
摘要:第一次使用xarain下载Forms程序,提示一下错误.C:\Program Files (x86)\MSBuild\Xamarin\Android\Xamarin.Android.Common.targets(236,2): error XA5208: Download failed. Pleas... 阅读全文
posted @ 2015-06-26 00:48 遥望星空 阅读(949) 评论(0) 推荐(0) 编辑
摘要:The Windows Phone Silverlight 8.1 app model gives WindowsPhone8 developers access to some of the newest features available in Windows Phone Store apps... 阅读全文
posted @ 2015-06-17 21:06 遥望星空 阅读(375) 评论(0) 推荐(0) 编辑
摘要:This packages provides a version of the Managed Extensibility Framework (MEF) that is lightweight and specifically optimized for high throughput scena... 阅读全文
posted @ 2015-06-17 17:20 遥望星空 阅读(598) 评论(0) 推荐(0) 编辑
摘要:众所周知,苹果的OS和谷歌的Android系统都有着相对成熟的设计和较好的用户体验,而随着WP8.1的发布,微软WP系统在交互方面也有了很多改进和提升,而今天小编便为大家全面对比一下这三大系统。众所周知,苹果的OS和谷歌的Android系统都有着相对成熟的设计和较好的用户体验,而随着WP8.1的发布... 阅读全文
posted @ 2015-06-17 16:45 遥望星空 阅读(318) 评论(0) 推荐(0) 编辑
摘要:给.dll文件加一个数字签名的方法效果如图所示:做法:下载数字签名工具包:http://files.cnblogs.com/babyt/SignTool.rar/Files/JavaCoffee/SignTool.rar电脑桌面左下角的开始>>运行>>输入cmd进入DOS命令窗口利用cd(跳转)命令... 阅读全文
posted @ 2015-06-17 15:44 遥望星空 阅读(5792) 评论(0) 推荐(0) 编辑
摘要:sizeof在非Unsafe环境下只能用于预定义的一系列类型,如Int,Short等等。而在Unsafe环境下,sizeof可以被用于值类型,但是值类型中不可以有引用类型,否则C#编译器会报错:error CS0208: Cannot take the address of, get the siz... 阅读全文
posted @ 2015-06-16 17:06 遥望星空 阅读(1426) 评论(0) 推荐(0) 编辑
摘要:How can you add an already created instance to a MEF container/cataloge to use when resolving Imports. I want the functionality that Unity gives with ... 阅读全文
posted @ 2015-06-16 00:25 遥望星空 阅读(291) 评论(0) 推荐(0) 编辑
摘要:When writing cross platform apps with Xamarin, our goal is share as close to 100% of our code across all the platforms. While this is an admirable goa... 阅读全文
posted @ 2015-06-15 22:31 遥望星空 阅读(601) 评论(0) 推荐(0) 编辑
摘要:使用AES加密时,当密钥大于128时,代码会抛出java.security.InvalidKeyException: Illegal key size or default parametersIllegal key size or default parameters是指密钥长度是受限制的,jav... 阅读全文
posted @ 2015-06-14 23:48 遥望星空 阅读(345) 评论(0) 推荐(0) 编辑
摘要:I have the Windows Phone 8.1 SDK on my dev pc installed together with VS 2013. I need to open some WP 8.0 projects in VS 2013, but I can't do that wit... 阅读全文
posted @ 2015-06-12 10:25 遥望星空 阅读(375) 评论(0) 推荐(0) 编辑
摘要:Windows Phone SDK 8.1 update英文版http://download.microsoft.com/download/E/7/D/E7D9744A-06A6-46FB-AEA4-50FAAEC6CE73/windowsphone81sdkupdate1.isoWindows P... 阅读全文
posted @ 2015-06-12 08:11 遥望星空 阅读(2434) 评论(0) 推荐(0) 编辑
摘要:安装wp8sdk 当前系统时钟或签名文件中的时间戳验证时要求的证书不在有效期内。[1404:0090][2015-06-12T08:00:53]: Error 0x800b0101: Failed to verify certificate chain policy status.[1404:009... 阅读全文
posted @ 2015-06-12 08:08 遥望星空 阅读(2955) 评论(0) 推荐(0) 编辑
摘要:Developers are now finding themselves having to author applications for a diverse range of mobile platforms (iOS, Android, Windows Phone, …), each of ... 阅读全文
posted @ 2015-06-12 03:34 遥望星空 阅读(420) 评论(0) 推荐(0) 编辑
摘要:APortable Class Libraryis a .NET library that can be used (in binary form, without recompiling) on multiple .NET platforms. When you create a Portable... 阅读全文
posted @ 2015-06-06 15:18 遥望星空 阅读(267) 评论(0) 推荐(0) 编辑
摘要:Portable Class Libraries were introduced with Visual Studio 2010 SP1 to aid writing libraries that could be used on many different platforms – the ful... 阅读全文
posted @ 2015-06-06 12:18 遥望星空 阅读(382) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示