CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: EvgenOrel

Search: Search took 0.01 seconds.

  1. Replies
    1
    Views
    8,758

    Re: CommandConverter

    What is "doSomething"?
    If is :
    [C#]
    public void doSomething()
    {

    }
    [/C#]
    try that
    [C#]
  2. Replies
    10
    Views
    2,141

    Re: using xml to parse a data file in C#

    XDocument doc = XDocument.Load("file2path\file2name.xml");
    int S_N=(int)doc.Element("SOME_NUMBER").Value;
    int S_T1=(int)doc.Element("SOME_TYPE1").Value;
    int...
Results 1 to 2 of 2





Click Here to Expand Forum to Full Width

Featured