What is the best way to initialize a struct to a specific value. For example, in C++, I was able to use ZeroMemory(...), or memset. Are there any similar methods in C#?

LA