I'm switching to C# from unityscript and so far I'm enjoying the ride :)
Can someone that knows c# well explain what these things are doing?
1: something = (float)sometingg; Why is "(type)" there?
2: In some functions, there's "get" and "set", what exactly does it do?
float something{
get{
}
set{
}
}
↧