.Net Mono and Javascript

Where do I look up the .Net functions that I can use in Unity3d?

If I’m looking on the MS .net site I see lots of things that I can’t use.

So where should I look.
On the mono site there are no docs for certain expressions.

Trying to learn how to construct a regular expression.

Confused…

Dan

with unityscript you can use all regular .NET 2.0 frameworks (Mono 1.2.5 as used in Unity is .NET 2.0 more or less) just as with C#. There is only one .NET below :slight_smile:

For things you need char instead of string, you can do it though use the “indexed access” nature of strings to get a char ( “s”[0] is the same as ‘s’ basically )