using Murmur; byte[] data = Encoding.UTF8.GetBytes("hello world"); uint seed = 12345; MurmurHash3.Hash32(data, seed);In this example, we first convert the string "hello world" into bytes using UTF-8 encoding. Then we initialize a seed value of 12345. Finally, we call the `MurmurHash3.Hash32` method, which computes a 32-bit MurmurHash of the data using the specified seed. The package library for this example is the `Murmur` package, which is available through NuGet.