c# 익명 메소드 : Besides named methods, C# compiler also generates a cache field for performance. When AnonymousMethod is called for the first time, the delegate instance is constructed, and stored in the
퍄퍄퍄_(piapiapia1)2018-02-11 15:34
cache filed. when AnonymousMethod is called again, the cache field is used and delegate instantiation does not execute again.
퍄퍄퍄_(piapiapia1)2018-02-11 15:35
c# 익명 표현식 : Its compilation is identical to above anonymous method with delegate keyword
언어마다 처리가 좀 다른 듯
c# 익명 메소드 : Besides named methods, C# compiler also generates a cache field for performance. When AnonymousMethod is called for the first time, the delegate instance is constructed, and stored in the
cache filed. when AnonymousMethod is called again, the cache field is used and delegate instantiation does not execute again.
c# 익명 표현식 : Its compilation is identical to above anonymous method with delegate keyword
아 이건 최종적으로 바이너리에 박힐 때의 얘기는 아니네