User Profile

Collapse

Profile Sidebar

Collapse
kreismaler
kreismaler
Last Activity: May 12 '08, 08:53 PM
Joined: Feb 7 '08
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • kreismaler
    replied to Regular Expression using Regex c#
    in .NET
    In fact your Regex is correct. The problem is that verbatim strings (@"...") don't support the backslash ("\") as escape character. To escape a double quote in a verbatim string use two double quotes instead.

    Maybe some code is more helpful:
    Code:
                string test = @"<td class=""detail12"" align=""center"" bgcolor=""#b6e2ff"">9,034</td>";
    ...
    See more | Go to post

    Leave a comment:


  • C#-APP: redirecting STDOUT vs. anonymous pipes: what's the difference?

    I have some problems to understand the difference of using the STDOUT and using "anonymous pipes" as shown below:

    Code:
    using System;
    using System.Diagnostics;
    using System.IO;
    
    namespace ProcessTest
    {
        class Program
        {
            static void Main(string[] args)
            {
                // configure ProcessStartInfo to start some exe and to redirect the
    ...
    See more | Go to post

  • Some code example would be helpful, but I guess you have done something like this:

    Code:
    // wrap the delegate around the ipc call method
    IpcChannelCallDelegate channelCall = new IpcChannelCallDelegate(channelCall);
    // start the ipc call asychronously
    IAsyncResult asyncResult = channelCall.BeginInvoke(param, null, null);
    
    // -PLACEHOLDER-
    
    // get the result from the ipc call
    ...
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...