Please enable JavaScript.
Coggle requires JavaScript to display documents.
C# Tutorial | SoloLearn: Learn to code for FREE! (built-in data types (int…
C# Tutorial | SoloLearn: Learn to code for FREE!
The .NET Framework
Common Language Runtime (CLR)
It manages code at execution time, providing core services such as memory management, code accuracy, and many other aspects of your code.
the .NET Framework class library.
is a collection of classes, interfaces, and value types that enable you to accomplish a range of common programming tasks, such as data collection, file access, and working with text.
built-in data types
int - integer.
float - floating point number.
double - double-precision version of float.
char - a single character.
bool - Boolean that can have only one of two values: True or False.
string - a sequence of characters.
Methods
Convert
ToDouble
ToBoolean
integer
ToInt16
ToInt32
ToInt64
Strings
Length
IndexOf(value)
Insert(index, value)
Remove(index)
Replace(oldValue, newValue)
Substring(index, length)
Contains(value)
Operators
Arithmetic Operators
Relational Operators
Logical Operators
Bitwise Operators
Assignment Operators
Misc Operators