string whatever = "Rundll32 Printui.dll,PrintUIEntry /ia /K /q /m \"SHARP MX-5500N PS\" /h \"Windows NT x86\" /v 3 /f sn0hwenu.inf";
or
string whatever = @"Rundll32 Printui.dll,PrintUIEntry /ia /K /q /m ""SHARP MX-5500N PS"" /h ""Windows NT x86"" /v 3 /f sn0hwenu.inf";
Related Contents:
- Escape double quotes in a string
- How to include quotes in a string
- Parse string to DateTime in C#
- Evaluating string “3*(4+2)” yield int 18 [duplicate]
- Why would you use String.Equals over ==? [duplicate]
- How can I String.Format a TimeSpan object with a custom format in .NET?
- How to access random item in list?
- Convert String to Type in C# [duplicate]
- How to remove illegal characters from path and filenames?
- Efficient way to remove ALL whitespace from String?
- Best way to resolve file path too long exception
- Serialize an object to string
- Are there any Fuzzy Search or String Similarity Functions libraries written for C#? [closed]
- C# Double – ToString() formatting with two decimal places but no rounding
- C# List to string with delimiter
- Strip the byte order mark from string in C#
- Splitting a string / number every Nth Character / Number?
- Convert JSON String to JSON Object c#
- Check if a value is in an array (C#)
- Is String.Contains() faster than String.IndexOf()?
- Remove HTML tags from string including   in C#
- How to remove all white space from the beginning or end of a string?
- Is string in array?
- How to get the last five characters of a string using Substring() in C#?
- Remove text in-between delimiters in a string (using a regex?)
- Replacing a char at a given index in string? [duplicate]
- How to parse a string into a nullable int
- Convert binary string into integer
- How do I get around the “‘” problem in sqlite and c#?
- Regex nested parentheses
- How do i split a String into multiple values?
- Encode a FileStream to base64 with c#
- Delete last char of string
- string.ToLower() and string.ToLowerInvariant()
- C# string replace
- Connection string with relative path to the database file
- What’s a good way of doing string templating in .NET?
- How can I get a character in a string by index?
- Split String into smaller Strings by length variable
- C# hex to ascii
- Truncate string on whole words in .NET C#
- Easiest way to parse a comma delimited string to some kind of object I can loop through to access the individual values?
- Pick Random String From Array
- Difference between == operator and Equals() method in C#?
- Display Float as String with at Least 1 Decimal Place
- How can I create all possible combinations for a set of words without repetition?
- Search for a string in Enum and return the Enum
- Why is the length of this string longer than the number of characters in it?
- Does C# have a String Tokenizer like Java’s?
- What does the @ prefix do on string literals in C#