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
V

vytheese

@vytheese
About
Posts
40
Topics
11
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Is it Possible to build a Processor which understands MSIL code.
    V vytheese

    Thanks for the Insight. From the scalable point I agree that hardware targeting a specific framework would not be posssible for a general PC. Probably it could fit for specific task like, middleware broker, Routing, Message Filters devices. For this purpose I got a reply from Kirk Wood about .Net MicroFramework. Managed OS could be the possible way for targeting a general PC. I got a reply in this same thread from Patrix Fox about a project called Singularity. Note: Don't know how to refer those previous link in this thread. Sorry for Innconvinience.

    Regards, Vythees Miles to go before sleep...

    .NET (Core and Framework)

  • Is it Possible to build a Processor which understands MSIL code.
    V vytheese

    Thanks. Almost broken my Immagination :)

    Regards, Vythees Miles to go before sleep...

    .NET (Core and Framework)

  • Is it Possible to build a Processor which understands MSIL code.
    V vytheese

    Thanks for the answer. I think a sweet spot may be certain middleware and asp.net appserver where pure performance in demand. Hope one day I could see one. ( Again. Sure I will not use ;) )

    Regards, Vythees Miles to go before sleep...

    .NET (Core and Framework)

  • Is it Possible to build a Processor which understands MSIL code.
    V vytheese

    Hmm.., I need to backtrack from the idea of placing GC in Bios. Better It should be a managed OS which should be built purely by IL. Its could be like scaling a CLR itself to a complete OS. Hope when we build we don't have bussiness compulsion to support backward compatibility (16bit DOS PAC-Man game's) :)

    Regards, Vythees Miles to go before sleep...

    .NET (Core and Framework)

  • Is it Possible to build a Processor which understands MSIL code.
    V vytheese

    I think(dream) current branch prediction technique in CPU can be scaled to optimize the code. I think we won't design a unmanaged process. We can design a process which understands AppDomains. Which will track all the resource instance. ( Hope GC will be embedded in the BIOS itself too). Not sure If I am making clear.

    Regards, Vythees Miles to go before sleep...

    .NET (Core and Framework)

  • Is it Possible to build a Processor which understands MSIL code.
    V vytheese

    Note : This one is Extreme Hypothetical dream Is it possible to build a CPU that understands Itermediate Language straight away. ( No JIT, No unmanaged) What could be the blocking factor's if we can't take it to the next Consumer Electronic Show (CES) ;P

    Regards, Vythees Miles to go before sleep...

    .NET (Core and Framework)

  • reverse lookup in dictionary
    V vytheese

    Good, Sorry I failed to notice that. But in any case its only a wrapper for me. What I am looking for is single dictionary with key, values both indexed or hashed. since in my scenario the collection I am expecting is huge and time for process is having little window. so I want to get the feasible data structure that will helps me in both (space/time). But with the time contstraint for my execution I have to trade between space vs time for a intial release. Grazie.

    Regards, Vythees Miles to go before sleep...

    C#

  • reverse lookup in dictionary
    V vytheese

    The wrapper will ease from access point of view but Again I will end up in performance issue while searching from value point.

    Regards, Vythees Miles to go before sleep...

    C#

  • reverse lookup in dictionary
    V vytheese

    Thanks, but in my case both are unique.

    Regards, Vythees Miles to go before sleep...

    C#

  • reverse lookup in dictionary
    V vytheese

    Is there any data structure avilable out of the box in Framework 3.5, kind of reverse lookup dictionary.

    Dictionary< key1, key2 > d = new Dictionary< key1, key2>();
    Key2 k2 = d[key1]; // normal
    Key1 k1 = d[key2]; // specify the key2 and get key1 -- needed

    Thanks

    Regards, Vythees Miles to go before sleep...

    C#

  • XML message generation
    V vytheese

    Go for XMLDocument since its easy to maintain, futuristic, and supports XPath queries.

    Regards, Vythees Miles to go before sleep...

    C# xml question

  • is this coding correct?
    V vytheese

    Hey I think you complicating the things much. There are out of the box validation controls avialable for the Asp.NET controls. Can you justify why you want to use VB controls ?.

    Thomas Toh wrote:

    but it doesnt seem to work as it says MessageBox.show does not exit in current context.

    MessageBox.Show works in win forms not in asp.net. To achieve the same you can use javascript. And also forum is not only for throwing a instant answer for the moment, its also guides one to look further on the topics you posted.. So on that sense he told you to buy a book and its also a way of teaching too. Its worth to read a book on starting stage.

    Regards, Vythees Miles to go before sleep...

    C# sysadmin help question

  • XML message generation
    V vytheese

    If your using .NET 3.5 Try to use XElement using System.Xml.Linq its pretty easy, fast and convinient when compared to DOM

    Regards, Vythees Miles to go before sleep...

    C# xml question

  • Programatically removing a reference???
    V vytheese

    I never tried, but as of my understanding, The Solution file ( *.csProj ) contains the sections to add reference under ItemGroup tag these references are listed. This tag supports condition attribute. So you can write a custom task, which executes under target BeforeCoreGet and sets the condtion attribute of reference ItemGroup accordingly. Try to search for CustomTask for MSBuild, you found many pre built tasks contributed by communities.

    Regards, Vythees Miles to go before sleep...

    C# csharp help question

  • Process
    V vytheese

    You can load your exe's in diffrent AppDomain under one process. The above solution is only applicable, if your exe all are .NEt compatible.

    Regards, Vythees Miles to go before sleep...

    C# question

  • Best practice to handle three services.
    V vytheese

    Write seprate methods like this.. public void StopTimer(bool suppressEx) { try { timer.Stop(); } catch (Exception ex) { //Do something with exception if( suppressEx == false) throw ex; } In your Stop method you can call like this... public void Stop() { StopTimer(false); StopFirstPort(false); ...... } Choose the way you like...

    Regards, Vythees Miles to go before sleep...

    C# help question discussion

  • Best practice to handle three services.
    V vytheese

    With Seprate try catch block inside one method.

    Regards, Vythees Miles to go before sleep...

    C# help question discussion

  • Which is best (obj != null) or ( obj == null) ?
    V vytheese

    So in that terms, Is there will be a diffrence between JNE or JE instructions.

    Colin Angus Mackay wrote:

    In short you are over optimising.

    Yes I agree with the above. ;)

    Regards, Vythees Miles to go before sleep...

    C# question

  • Which is best (obj != null) or ( obj == null) ?
    V vytheese

    Object obj = null; if(obj == null) Console.Writeline("null"); if(obj != null) Console.Writeline("not null"); In above which will execute faster. == or != :mad: Just curious...

    Regards, Vythees Miles to go before sleep...

    C# question

  • While editing a cell that is newly created in GridView throws Index out of range error
    V vytheese

    Like this, dataGridView1.DataSource = null; dataList.Add(new Data() { Name = "V", LastName = "J" }); dataGridView1.DataSource = dataList; I tried that too, Not working.. :sigh:

    Regards, Vythees Miles to go before sleep...

    C# database help
  • Login

  • Don't have an account? Register

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