본문 바로가기

프로그래밍 언어 노트/C#

[Visual Studio] 메서드 자동완성 기능 플러그인 (C# Methods Code Snippets)

https://marketplace.visualstudio.com/items?itemName=jsakamoto.CMethodsCodeSnippets


비주얼스튜디오에서 C#은 워낙 킹갓 인텔리센스를 제공해줘서

한 두글자쓰고 탭탭 누르면 왠만하면 다 만들어주는데


의외로 메소드에서 이런기능이 없다


해당 플러그인을 깔면 메소드에서도 해당 기능을 지원해준다.

  • method (snippet for instance method)
    • and "method1", "method2", "method3" are taking arguments edition.
  • vmethod (snippet for virtual instance method)
    • and "vmethod1", "vmethod2", "vmethod3" are taking arguments edition.
  • smethod (snippet for static method)
    • and "smethod1", "smethod2", "smethod3" are taking arguments edition.
  • xmethod (snippet for extension method)
    • and "xmethod1", "xmethod2", "xmethod3" are taking arguments edition.
  • amethod (snippet for an async instance method)
  • asmethod (snippet for an async static method)
  • eh (snippet for event handler method)
  • seh (snippet for event handler static method)


728x90