【c#】文字列の末尾が一致するか調べる【string】

リファレンス

public bool System.String.EndsWith( string value);

string hoge = "abcd.meta";
bool isMeta = hoge.EndsWith( ".meta"); // true

Add a Comment

メールアドレスが公開されることはありません。 が付いている欄は必須項目です