#region Copyright © 2009 Jose Antonio De Santiago-Castillo. //Copyright © 2009 Jose Antonio De Santiago-Castillo //E-mail:JAntonioDeSantiago@gmail.com //Web: www.DotNumerics.com // #endregion using System; using System.Collections.Generic; using System.Text; namespace DotNumerics.FortranLibrary { public class Ofloat { private float _v = 0; public float v { get { return _v; } set { _v = value; } } } }