fyiReporting.RDL.Report.CreateRuntimeName C# (CSharp) 메소드

CreateRuntimeName() 개인적인 메소드

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