views:

148

answers:

4

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)

A: 

Built-in Data Types | Basic Data Types | Default Data Types All works fine ...

AlaaShaker
+3  A: 

I think I would call them primitives.

lc
+1  A: 

I'd be tempted to use 'CLR types'

Stuart Dunkeld
+4  A: 

Primitive types sounds like the right term.

Here's the definition from MSDN.

Vadim
+1 for the link. Thanks for that.
lc
Thanks for the link. I can use it for clarification in my documentation
Michael Kniskern
I thought it was intrinsic. Am I thinking of something else?
Joshua Belden