Parses a string into properties of RdlEnum<(Of <(<'T>)>)> type.
            
        
    Namespace: 
   C1.C1RdlAssembly: C1.C1Report.2 (in C1.C1Report.2.dll)
 Syntax
Syntax
| C# | 
|---|
| public static bool TryParse( string s, out bool isExpression, out T value, out string expression ) | 
| Visual Basic | 
|---|
| Public Shared Function TryParse ( _ s As String, _ <OutAttribute> ByRef isExpression As Boolean, _ <OutAttribute> ByRef value As T, _ <OutAttribute> ByRef expression As String _ ) As Boolean | 
Parameters
- s
- Type: System..::..String
 A string to parse.
- isExpression
- Type: System..::..Boolean%
 OUT: true if s represents an expression, false otherwise.
- value
- Type: T%
 OUT: The enum value if isExpression is false.
- expression
- Type: System..::..String%
 OUT: expression if isExpression is true.
 
     
     
     
     
    