16 references to Nullable
System.Workflow.Activities (16)
Rules\ArithmeticLiteral.cs (16)
114dictionary.Add(typeof(byte?), TypeFlags.Nullable | TypeFlags.UInt16); 116dictionary.Add(typeof(sbyte?), TypeFlags.Nullable | TypeFlags.Int32); 118dictionary.Add(typeof(char?), TypeFlags.Nullable | TypeFlags.UInt16); 120dictionary.Add(typeof(short?), TypeFlags.Nullable | TypeFlags.Int32); 122dictionary.Add(typeof(int?), TypeFlags.Nullable | TypeFlags.Int32); 124dictionary.Add(typeof(long?), TypeFlags.Nullable | TypeFlags.Int64); 126dictionary.Add(typeof(ushort?), TypeFlags.Nullable | TypeFlags.UInt16); 128dictionary.Add(typeof(uint?), TypeFlags.Nullable | TypeFlags.UInt32); 130dictionary.Add(typeof(ulong?), TypeFlags.Nullable | TypeFlags.UInt64); 132dictionary.Add(typeof(float?), TypeFlags.Nullable | TypeFlags.Single); 134dictionary.Add(typeof(double?), TypeFlags.Nullable | TypeFlags.Double); 136dictionary.Add(typeof(decimal?), TypeFlags.Nullable | TypeFlags.Decimal); 138dictionary.Add(typeof(bool?), TypeFlags.Nullable | TypeFlags.Boolean); 340bool nullable = (combined & TypeFlags.Nullable) == TypeFlags.Nullable; 341if (nullable) combined ^= TypeFlags.Nullable;