Skip to main content
Tweeted twitter.com/StackCodeReview/status/901334170886184960
edited tags
Link
200_success
  • 145.7k
  • 22
  • 191
  • 481
Using the class in main method.
Source Link
dijam
  • 311
  • 1
  • 10

Here I am using the class

var compiler = new Compiler(); compiler.Text = @"using System; namespace HelloWorldApplication { class HelloWorld { static void Main(string[] args) { /* my first program in C# */ Console.WriteLine(Hello World); Console.ReadKey(); } } }"; compiler.IsParenthesesBalanced(); 

Here I am using the class

var compiler = new Compiler(); compiler.Text = @"using System; namespace HelloWorldApplication { class HelloWorld { static void Main(string[] args) { /* my first program in C# */ Console.WriteLine(Hello World); Console.ReadKey(); } } }"; compiler.IsParenthesesBalanced(); 
removed thanks
Source Link
t3chb0t
  • 44.7k
  • 9
  • 84
  • 191

Thanks in advance.

Thanks in advance.

Source Link
dijam
  • 311
  • 1
  • 10
Loading