We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
説明 従来は拡張メソッドはすべて名前空間に属さないグローバル関数として登録されたものである必要があったが、他の関数と同じようにアクセス可能であれば使用できるようにしたい
期待する動作
void output(this string s) { print(s); } string str = "ABC"; str.output();//出力:ABC
The text was updated successfully, but these errors were encountered:
バインドでも下みたいな感じで拡張メソッド対応したいな。 ただこれやとC#の言語仕様にも準拠しなあかんのが要注意。
public static void Output(this string s)//thisは最初のみ。それ以外はコンパイルエラーになる { Console.WriteLine(s); }
Sorry, something went wrong.
fixed #91 #90 の拡張メソッドについて、extension属性がついていないものはすべて拡張メソッド専用になるよう仕様変更
50872fc
d2e219f
No branches or pull requests
説明
従来は拡張メソッドはすべて名前空間に属さないグローバル関数として登録されたものである必要があったが、他の関数と同じようにアクセス可能であれば使用できるようにしたい
期待する動作
The text was updated successfully, but these errors were encountered: