คำถามติดแท็ก windows-phone

1
ข้อผิดพลาด Reactive Extensions บน Windows Phone
คอมไพล์ด้วยVS 2012ประเภทโปรเจ็กต์WP 8.0รหัสต่อไปนี้จะล้มเหลวหากไม่ได้แนบดีบักเกอร์ อย่างไรก็ตามหากไม่ได้แนบดีบักเกอร์การเพิ่มประสิทธิภาพคอมไพเลอร์จะทำลายโค้ดภายในCrash()- ดูความคิดเห็นในโค้ด การทดสอบบนLumia 1520 (8.1)และLumia 630 (8.0) มีความคิดว่าเหตุใดจึงเกิดขึ้น public partial class MainPage : PhoneApplicationPage { public MainPage() { InitializeComponent(); Button.Tap += (sender, args) => new A<B, string>(new B(), "string").Crash(); } } public class B { public void Foo<T>(T val) { } } public class A<T1, T2> where …

1
Async POST ล้มเหลวใน WP7 และ F #
เมื่อฉันทำlet! read = from.AsyncRead bufใน F # มันจะบล็อกและไม่กลับมาจนกว่าซ็อกเก็ต TCP จะตาย ทำไม? และฉันจะแก้ไขได้อย่างไร? รหัส: module StreamUtil open System.IO /// copy from 'from' stream to 'toStream' let (|>>) (from : Stream) (toStream : Stream) = let buf = Array.zeroCreate<byte> 1024 let rec doBlock () = async { let! read = from.AsyncRead buf …
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.