ValueInjector.SourceCodeLocation.SourceCodeLocation C# (CSharp) Méthode

SourceCodeLocation() public méthode

public SourceCodeLocation ( String fn, int sl, int el, int sc, int ec ) : System
fn String
sl int
el int
sc int
ec int
Résultat System
		public SourceCodeLocation(String fn, int sl, int el, int sc, int ec)
		{
			_FileName = fn;
			_StartLine = sl;
			_EndLine = el;
			_StartColumn = sc;
			_EndColumn = ec;
		}
		public override bool Equals(object obj)