Skip to content

Settings and activity

2 results found

  1. 1,685 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    Christoph Pock supported this idea  · 
  2. 8 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    An error occurred while saving the comment
    Christoph Pock commented  · 

    You can write your own Extension @ MyExtensions.

    Mabye you need something like this:

    [code]
    public static string ToHexString(this IEnumerable<int> numbers)
    {
    return numbers.Select(x=>string.Format("0x{0:X2}", x)).Aggregate((c,y)=>c + " " + y);
    }
    [/code]