Code:
If TextBox.Text.Contains(Dictionary.ReadLine()) Then
MsgBox("This contains a word", MsgBoxStyle.Information, "Info")
end if
If TextBox.Text.Contains(Dictionary.ReadLine()) Then
MsgBox("This contains a word", MsgBoxStyle.Information, "Info")
end if
#include <iostream>
using namespace std;
template<typename T> struct A{};
template<typename T> struct B: public A<T>{};
template<typename T> void f(T obj){ cout << "default\n"; }
template<typename T> void f(A<T> obj){ cout << "special