fyiReporting.RDL.Report.CreateRuntimeName C# (CSharp) Method

CreateRuntimeName() private method

private CreateRuntimeName ( object ro ) : string
ro object
return string
        internal string CreateRuntimeName(object ro)
        {
            _RuntimeName++;					// increment the name generator
            string name = "o" + _RuntimeName.ToString();
            _LURuntimeName.Add(name, ro);
            return name;
        }