• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
 






Mike Von

 
 

Powered by 博客园
博客园 | 首页 | 新随笔 | 联系 | 订阅 订阅 | 管理
上一页 1 ··· 3 4 5 6 7

2014年4月15日

linq 延迟执行带来的困扰
摘要: 由于延迟执行,将for循环变量放入linq查询条件中会引起查询结果异常,因此,需要在每个条件后调用toList方法强制执行。 阅读全文
posted @ 2014-04-15 13:27 Mike Von 阅读(1477) 评论(11) 推荐(1)
 

2014年4月10日

如何实现能像windows 窗体一样改变大小的控件 Silverlight
摘要: 本文简单介绍了一下如何实现想windows窗体一样可以拖动边框改变大小的方法。 阅读全文
posted @ 2014-04-10 15:37 Mike Von 阅读(417) 评论(0) 推荐(0)
 

2014年2月26日

一个循环递归遍历问题
摘要: 不可以直接在循环里调用return,应该先跳出循环后再return。 阅读全文
posted @ 2014-02-26 11:10 Mike Von 阅读(332) 评论(0) 推荐(0)
 

2013年11月28日

SilverLight - Memory Leak
摘要: There is a memory leak issue in current silverlight project. It occurs in the search function: the memory usage of corresponding IE process increase a 阅读全文
posted @ 2013-11-28 15:15 Mike Von 阅读(323) 评论(0) 推荐(0)
 

2013年11月8日

signtool.exe not found
摘要: When check the [sign the Xap File] checkbox, build project failed due tosigntool.exe not found.Follow these steps:1. Make sure windows SDK is installed:http://msdn.microsoft.com/en-us/windowsserver/bb980924.aspx2. Make sure this path is contained in the system environment variable [path] (this path 阅读全文
posted @ 2013-11-08 15:16 Mike Von 阅读(670) 评论(0) 推荐(0)
 

2013年10月23日

性能改善之For与Foreach
摘要: 关于For与Foreach的区别,博客园里已经有好多这样文章了,都分析的挺好:http://www.cnblogs.com/jobs/archive/2004/07/17/25218.aspx 不过里面关于安全部分的描述可以略过。以下是我的测试代码:using System;using System... 阅读全文
posted @ 2013-10-23 09:43 Mike Von 阅读(248) 评论(0) 推荐(0)
 

2013年9月3日

Find the equipment indices
摘要: Here is a simple program test task, it doesn't have very diffcult logic:A zero-indexed array A consisting of N integers is given. An equilibrium index of this array is any integer P such that 0 ≤ P &A); class Solution { int solution(int[] A); } class Solution { public int solution(int[] A); 阅读全文
posted @ 2013-09-03 16:39 Mike Von 阅读(311) 评论(0) 推荐(0)
 

2013年8月18日

rotate the clock
摘要: A program test:You are given N round clocks.Every clock has M hands, and these hands can point to positions 1, 2, 3, ..., P (yes, these represent numbers around each face). The clocks are represented by the matrix A consisting of N rows and M columns of integers. The first row represents the hands o 阅读全文
posted @ 2013-08-18 05:39 Mike Von 阅读(428) 评论(0) 推荐(0)
 
ping局域网主机得到外网IP或另一网段IP
摘要: 症状:;两个笔记本连接到同一个路由器上, 一个ip是 192.168.1.100,主机名是Lenovo-A, 另一个是192.168.1.109,主机名是Lenovo-B在Lenovo-A 上pingLenovo-B,得到结果Ping request could not find host Lenovo-B. Please check the name and try again.Pinging 192.168.1.109 with 32 bytes of data:Reply from 192.168.1.109: bytes=32 time=1ms TTL=128Reply from 19 阅读全文
posted @ 2013-08-18 02:40 Mike Von 阅读(854) 评论(1) 推荐(0)
 

2013年6月7日

[转] polymorphic databinding solutions
摘要: 原文链接:http://ayende.com/blog/1558/polymorphic-databinding-solutionsLet us assume that you have the following class hierarchy:Now, what do you think the result of this code will be?BindingList<Animal> animals = new BindingList<Animal>();animals.Add(new Dog());animals.Add(new Cat());GridVie 阅读全文
posted @ 2013-06-07 09:27 Mike Von 阅读(226) 评论(0) 推荐(0)
 
上一页 1 ··· 3 4 5 6 7