Write C# code to convert infix notation to postfix notation.
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace InfixToPostfix { class Program { static bool convert(ref string infix, out string postfix) { int prio = 0; postfix = ""; Stack<Char> s1 = new Stack<char>(); for (int i = 0; i < infix.Length; i++) { char ch = infix[i]; if (ch == '+' || ch == '-' || ch == '*' || ch == '/') { if (s1.Count <= 0) ...