Skip to main content

Home/ Coders/ Group items tagged visual c

Rss Feed Group items tagged

Jack Wong

Charlie Calvert's Community Blog : LINQ Farm: Covariance and Contravariance in C# 4.0 - 0 views

  •  
    null
Joel Bennett

Dependency Graphs & Doxygen for Visual Studio .NET - 0 views

  •  
    There's actually quite a few Visual Studio macro-type solutions here, but the most interesting are the dependency graphs and doxygen automation, and #regions for C++
David Corking

Alarming Development : JavaScript is good enough | Jan 2009 - 0 views

  • It is impossible to build a hash table in JavaScript that works on arbitrary objects. You would have to manually allocate unique ID’s for every object and include them in the toString. So no collections in JavaScript. Adobe provides a true built-in hashtable in ActionScript 3.
  • Objects can function as sets and maps. Arrays can function as lists and iterators (generate an array when you need an iterator). More that good enough in this context.
  • VB also often compiles down to better MSIL than C#. It is also the only .NET language with first-class edit-and-continue Lisp-like debugging capabilities.
  • ...1 more annotation...
  • a good collection library should support a meta-object protocol with features like rejecting changes. This allows collections to be passed around as references,
  •  
    An old-fashioned language war, 2009 style. Visual Basic even gets a mention as "Lisp-like" (for its debugging.)
Joel Bennett

Regionerate - generate regions and group methods - 0 views

  •  
    A simple but useful addin for visual studio C# that lets you group methods, fields and properties (etc) together into REGIONs based on rules you define.
Hanjian Jan

The Big Computer Security - 0 views

  •  
    Security Computer for Programmer
tianjinxtl

【Visual C++】游戏开发笔记十七 游戏基础算法(一) 游戏随机系统初步 - 0 views

  • 六、产生一定范围随机数的通用算法公式▲要取得[a,b)的随机整数,使用(rand() % (b-a))+ a (结果值含a不含b)。▲要取得[a,b]的随机整数,使用(rand() % (b-a+1))+ a (结果值含a和b)。▲要取得(a,b]的随机整数,使用(rand() % (b-a))+ a + 1 (结果值不含a含b)。▲即(通用公式:a + rand() % n;取得[a,a+n) 的随机整数,其中的a是起始值,n是整数的范围。)▲要取得[a,b) 的随机整数,另一种表示:a + (int)(b-a) * rand() / (RAND_MAX + 1)。▲要取得[a,b] 的随机整数 另一种表示:a + (int)(b-a) * rand() / (RAND_MAX )。▲要取得[0,1] 之间的浮点数 ,可以使用rand() / double(RAND_MAX)。
Maxime Lagacé

ASP.NET - WinForms - WPF - Silverlight Controls & Components, Reporting Tools, App Fram... - 0 views

  •  
    BEST tools for grids, charts, etc with .net and silverlight
Andrey Karpov

A 64-bit horse that can count - 0 views

  •  
    The article concerns the peculiarities of Visual C++ compiler's behavior when generating 64-bit code and possible errors relating to it.
Joel Bennett

Paste XML as XLinq XElement - Visual Studio AddIn - Scott Hanselman's Computer Zen - - 0 views

  •  
    Lets you paste-as XML into C# and have it converted to use all the XElement and XNode stuff
‹ Previous 21 - 33 of 33
Showing 20 items per page