|
|
|
|
|
by boxmonster
2000 days ago
|
|
I recently wrote a utility for myself in Rust after having done several in C#. I like both languages, but Rust introduces pain points for no apparent reason. For example, I hate this way of dealing with errors match result {
Ok(value) => value,
Err(result) => {
panic!("error traversing directories {}", result);
}
};
It's awkward and ugly. I'm back to C#, now on .NET 5.) and find that it just got noticeably faster! It was already fast."Astonishing Performance of .NET 5: More Data" https://medium.com/swlh/astonishing-performance-of-net-5-mor... |
|