Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
U

User 2183100

@User 2183100
About
Posts
5
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Namespaces, aliases and Visual Studio Forms Designer
    U User 2183100

    I've run into this before. You are correct in that the compiler is looking in Foobar.System.Windows.Forms because you named your namespace 'System'. The local namespace 'System' overrides the global namespace 'System'. I do not know how to get around this. In my case I chose not to name my namespace 'System' but instead named it 'Foundation'. I just wanted to let everyone know that therei s nothing messed up with your project.

    C# help question csharp visual-studio

  • what is the maximum size
    U User 2183100

    Please don't read a 2gb file all at once. Thats just insane. Read it a little bit at a time, say, 1 mb or 10 mb, or whatever. Like the other guy said, check out StreamReader.

    C# question data-structures

  • component
    U User 2183100

    I'm sorry, english must not be your primary language but please, describe exactly what you want, what you expect it to do, how you expect it to do it, what it is for, and please use more than one sentance to explain all of this.

    C#

  • Too many generics in code.
    U User 2183100

    How about:

    public class MyComplexList: NodeHeap<Node<SimplePathFinder<TTileMap, TTile, TData>, TTileMap, TTile, TData>,
    SimplePathFinder<TTileMap, TTile, TData>, TTileMap, TTile, TData>
    {
    };

    MyComplexList openList = new MyComplexList();

    C# c++ help question

  • Wasted space
    U User 2183100

    I suspose you also believe lambda expressions shouldn't be used either? They are even harder to read but shorten the amount of written code by huge degrees. I wrote my first one today. Granted it's quite simple but its effective. return ModifiedKeys.First(kvp => kvp.Value == id).Key; Just to help you out, ModifiedKeys is a Dictionary. This line returns the first key in my dictionary who's value matches id.

    The Weird and The Wonderful tutorial question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups