programming-c-sharpC# type checking with the is statementOn this pageC# type checking with the is statementA var type can be checked using the 'is' statement var a = 1.0;if (a is int){ MessageBox.Show("int");}else{ MessageBox.Show("is NOT int");} Related Files https://github.com/seafooood/andrew-seaford.co.uk/tree/main/docs/programming-c-sharp/csharp-type-checking-statement C# Related Articles Adding days to a DateTime in C# C# Open File Dialog Create arraylist Create a autocompleting textbox using C# C# class properties