Put a script as a variable in C#?

I know I have been posting a LOT of conversion questions here and I apologise for that. I was wondering how to write this in C#, anybody know how to convert this?

var cloneScript : NameOfScript ;

Thank you in advance!

2 Answers

2

Public NameOfScript cloneScript;

In C# this would be

NameOfScript clonescript;