← Customer Feedback for LINQPad Settings and activity 2 results found Give option to generate EXE 1,685 votes Vote Vote Vote Vote We're glad you're herePlease sign in to leave feedback Signed in as (Sign out) Close Close 1 vote 2 votes 3 votes Remove votes You have left! (?) (thinking…) 29 comments · LINQPad Feature Suggestions · Delete… · Admin → How important is this to you? Not at all You must login first! Important You must login first! Critical You must login first! We're glad you're herePlease sign in to leave feedback Signed in as (Sign out) Close Close Christoph Pock supported this idea · Jun 23, 2012 Hexadecimal output formatting option 8 votes Vote Vote Vote Vote We're glad you're herePlease sign in to leave feedback Signed in as (Sign out) Close Close 1 vote 2 votes 3 votes Remove votes You have left! (?) (thinking…) 2 comments · LINQPad Feature Suggestions · Delete… · Admin → How important is this to you? Not at all You must login first! Important You must login first! Critical You must login first! We're glad you're herePlease sign in to leave feedback Signed in as (Sign out) Close Close An error occurred while saving the comment Christoph Pock commented · Jun 23, 2012 · Edit… · Delete… 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] Save Submitting...
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]