There is no direct equivalent in C++ to the C# 'is' operator, but you can replicate the behavior by testing the result of a 'dynamic_cast'.
C# | C++ |
---|---|
bool b = f is Foo; | bool b = dynamic_cast<Foo*>(f) != nullptr; |
Use C# to C++ Converter to convert from C# to C++.
Additional resource:
C++ and C# Equivalents
Copyright © 1997 – 2019 Tangible Software Solutions, Inc.