Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
2
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
Ranked #13.9K
Ranked #2K
~3K People Reached
Favorite Tags
c# x 2
php x 1

12 Posted Topics

Member Avatar for KazenoZ

UDK compiles scripts into its own type of bytecode, which is then parsed at runtime. I'm actually not 100% sure about Unity -- it requires you to choose a platform when you build, but I assume they're using some bytecode (proprietary, most likely) because they support the web player. In …

Member Avatar for vdeych
0
177
Member Avatar for Smashed Badger

Many good MMORPGs use instancing as a way to create small-scale battles in a large environment. Instancing doesn't necessarily need to teleport players to a separate location -- many new titles just create zones with a set of objectives for each side, and the players can just walk over there. …

Member Avatar for ajst
0
145
Member Avatar for nick.crane

I don't believe XNA 3.1 is supported by VS 2010 at this time, in case you are interested in XNA development.

Member Avatar for nick.crane
1
277
Member Avatar for anoop4real

Hi Anoop, Try the EQATEC profiler, [URL="http://www.eqatec.com/tools/profiler/"]http://www.eqatec.com/tools/profiler/[/URL]. There are video tutorials for profiling .NET CF and Silverlight apps ([URL="http://video.google.com/videoplay?docid=-6081864198935570948#"]Video 1[/URL] [URL="http://channel9.msdn.com/posts/martinesmann/First-code-profiler-for-Silverlight/"]Video 2[/URL]). There is also a somewhat limited user guide available on the website. Hope this helps, Vasiliy Deych

Member Avatar for vdeych
0
112
Member Avatar for bbman

Hi bbman, It is a great question, and since C# is not explicit about references, there is some confusion about what exactly you are passing to a function. Let's look at what happens when we pass a list to a function. There are generally two ways of doing this, and …

Member Avatar for vdeych
0
180
Member Avatar for coffeeMan21

Hi coffeeMan21, How is "point2d" declared? Is it public or internal? You are getting the error because you are making a public method, but the type that it returns is most likely not public. Example: [CODE] public class Honda { // This accessory is private and only for use by …

Member Avatar for vdeych
0
611
Member Avatar for bbman

[QUOTE=bbman;1267439]Hey, How would I go about finding the amount of values, say "DaniWeb" in a List<string>? I just need a number, not their index. Cheers[/QUOTE] Hi bbman, The simplest way of achieving this would be a simple "for" or "foreach" loop. [CODE] int countFoo = 0; foreach (string strSomething in …

Member Avatar for bbman
0
133
Member Avatar for dreamy_ananya

Hi dreamy_ananya, Based on the scenario you described, a singleton is not really a good solution. A singleton is essentially a global instance (or several global instances) of a class. It shouldn't be used just to provide lookup for a certain class -- that is not its intended purpose and …

Member Avatar for vdeych
0
351
Member Avatar for craigp1

Hi! Sorry, it's been years since I've worked with MATLAB, but the code doesn't use many unique MATLAB features. So, here is a quick conversion to C# bitwise operators; sorry, I don't have a complete solution for you, but I hope this can at least get started: [CODE] byte Stego …

Member Avatar for vdeych
0
145
Member Avatar for chathuD

chathuD, That is an interesting problem, and if I understood the problem correctly, your solution would be to use [URL="http://en.wikipedia.org/wiki/Dijkstra%27s_algorithm"]Dijkstra's algorithm[/URL]. An excellent visual description of this algorithm is available here: [URL="http://optlab-server.sce.carleton.ca/POAnimations2007/DijkstrasAlgo.html"]http://optlab-server.sce.carleton.ca/POAnimations2007/DijkstrasAlgo.html[/URL]. Another great illustrated explanation can be found here: [URL="http://eoinbailey.com/blog/dijkstras-algorithm-illustrated-explanation"]http://eoinbailey.com/blog/dijkstras-algorithm-illustrated-explanation[/URL] There is also a published [URL="http://blog.nerdbank.net/2006/01/c-dijkstra-algorithm-implementation.html"]C# implementation[/URL] you can …

Member Avatar for chathuD
0
98
Member Avatar for xuele91

You cannot declare some variable of a type that is less accessible than the variable itself. For example, if I have: [CODE] public class MyBigPublicClass { private class MySmallPrivateClass { ... stuff ... } // Can't do this because instance is more visible than class definition public MySmallPrivateClass InstanceOfPrivateClass; } …

Member Avatar for jonsca
0
121
Member Avatar for mike4

Inside the loop: [code=php] $executed = false; if(!$executed) { // Your block of code call_me_only_once(); $executed = true; } [/code]

Member Avatar for vdeych
0
182

The End.