文字列変数にフォーム名を格納していて、この文字列をフォームタイプをとるクラスに渡したい
string Str = "MainForm"; // this is form name
// I try to convert the data type string to form type like this
Form FormNm = (Form) Str ;
// there is the message appears cannot convert type 'sting' to 'form'
TransLang.SaveControlsLanguage(FormNm); // this is the class
ありがとうございました