> ```cs > static int Test() => "Hello".Length; // replace with just `5` > ``` > > Before: > > ```assembly > movabs rax,0x7fd6c1758160 > mov eax,DWORD PTR [rax] > ret > ``` > > Now: > > ```assembly > mov eax,0x5 > ret > ``` _Originally posted by @EgorBo in [mono#5310](https://github.com/mono/mono/pull/16898#issue-494728473)_ Related: * https://github.com/dotnet/runtime/issues/5310