I'm writing little code and my problem is that I'd like to do something like(I'm not C# master ^^):
private void pierwiastek(double* c, double* d)
{
}
But it seems to not work because unsafe and I don't want to use all that unsafe/fixed stuff, can this effect be reach in other way(I mean the variable won't be copied and function will work on source vars)?