Confusing data types...

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Andy B

    Confusing data types...

    I am working with AdventureWorksL T database. I ran across these datatypes in
    the Product table: money, decimal and UNIQUEIDENTIFIE R. what are the
    equivalent of these in c#?



  • Ignacio Machin \( .NET/ C# MVP \)

    #2
    Re: Confusing data types...

    Hi,

    IIRC in MSDN you can find this,

    In any case, UNIQUEIDENTIFIE R = Guid , money,decimal = decimal (sometimes
    money is treated as Double)

    "Andy B" <a_borka@sbcglo bal.netwrote in message
    news:OM77e1pbIH A.1960@TK2MSFTN GP02.phx.gbl...
    >I am working with AdventureWorksL T database. I ran across these datatypes
    >in the Product table: money, decimal and UNIQUEIDENTIFIE R. what are the
    >equivalent of these in c#?
    >
    >
    >

    Comment

    • =?ISO-8859-1?Q?Arne_Vajh=F8j?=

      #3
      Re: Confusing data types...

      Andy B wrote:
      I am working with AdventureWorksL T database. I ran across these datatypes in
      the Product table: money, decimal and UNIQUEIDENTIFIE R. what are the
      equivalent of these in c#?
      Guess:
      decimal
      decimal
      Guid

      Arne

      Comment

      Working...