What is the official term for the basic object types available in the C#? I am creating API documentation and I need to explain any that one property of my API will accept any basic C# object (string
, Int32
, etc.) and it will not accept any complex data type (struct
, class
)
views:
148answers:
4
A:
Built-in Data Types | Basic Data Types | Default Data Types All works fine ...
AlaaShaker
2009-05-08 00:52:02
+4
A:
Primitive types sounds like the right term.
Here's the definition from MSDN.
Vadim
2009-05-08 00:54:45
+1 for the link. Thanks for that.
lc
2009-05-08 00:55:35
Thanks for the link. I can use it for clarification in my documentation
Michael Kniskern
2009-05-08 00:59:05
I thought it was intrinsic. Am I thinking of something else?
Joshua Belden
2009-05-08 01:07:16