自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(1)
  • 资源 (2)
  • 收藏
  • 关注

原创 vc++ 使用64位平台编译,运行程序出现0xc000007b错误的解决方案

案例重现:使用vs在32位平台编译正常运行,切换到64位编译后,运行程序出现0xc000007b错误。错误原因:可以使用了32位lib#pragma comment(lib,"comctl32.lib")解决方案:修改manifest: <assemblyIdentity version="1.0.0.0" proces

2015-04-07 12:38:04 7972

C#实现二叉树遍历算法

 static void Main(string[] args)   {   nodes<string> rootNode = BinTree();   Console.WriteLine("先序遍历方法遍历二叉树:");   PreOrder<string>(rootNode);   Console.WriteLine("中序遍历方法遍历二叉树:");   MidOrder<string>(rootNode);   Console.WriteLine("后序遍历方法遍历二叉树:");   AfterOrder<string>(rootNode);

2015-04-15

nopcommerce_系统开发文档

private ITask CreateTask() { ITask task = null; if (this.Enabled) { var type2 = System.Type.GetType(this.Type); if (type2 != null) { object instance; if (!EngineContext.Current.ContainerManager.TryResolve(type2, out instance)) { //not resolved instance = EngineContext.Current.ContainerManager.ResolveUnregistered(type2); } task = instance as ITask; } } return task; }

2015-04-15

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除