c# class declaration
//[access modifier] - [class] - [identifier]
public class Customer
{
// Fields, properties, methods and events go here...
}
c# class declaration
//[access modifier] - [class] - [identifier]
public class Customer
{
// Fields, properties, methods and events go here...
}
c# class reference
// Unlike java we cant do Class<?> to contain a generic class
// but we can use Type to contain a type
// A type is essentially Class<?> but with some extra stuff added on
// You can grab a type with typeof(object/reference)
// It does the job :shrug:
Type stringClass = typeof(string); // this will store the string type <3
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us