MdxClient.Cell.Cell C# (CSharp) Méthode

Cell() public méthode

public Cell ( SerializationInfo info, StreamingContext context ) : System
info System.Runtime.Serialization.SerializationInfo
context System.Runtime.Serialization.StreamingContext
Résultat System
        public Cell(SerializationInfo info, StreamingContext context)
        {
            FormattedValue = (string)info.GetValue("FormattedValue", typeof(string));
            Value = info.GetValue("Value", typeof(object));
            Ordinal = (int)info.GetValue("Ordinal", typeof(int));
        }

Same methods

Cell::Cell ( ) : System