csharp convert readline to int

Code Example - csharp convert readline to int

                
                        int intTemp = Convert.ToInt32(Console.ReadLine());
                    
                
 

csharp input integer

                        
                                int chosenNumber = int.Parse(Console.ReadLine());
                            
                        
 

Related code examples