C# 클래스 Smrf.NodeXL.Adapters.PajekGraphAdapter.PajekEdgeData

Stores information about one edge in a Pajek file.
This structure is embedded within the PajekGraphAdapter class and is meant for use only within the class.
파일 보기 프로젝트 열기: 2014-sed-team3/term-project

공개 메소드들

메소드 설명
PajekEdgeData ( Int32 firstVertexNumber, Int32 secondVertexNumber, Double weight ) : System

Initializes a new instance of the PajekEdgeData class.

비공개 메소드들

메소드 설명
AssertValid ( ) : void

메소드 상세

PajekEdgeData() 공개 메소드

Initializes a new instance of the PajekEdgeData class.
public PajekEdgeData ( Int32 firstVertexNumber, Int32 secondVertexNumber, Double weight ) : System
firstVertexNumber System.Int32 /// Vertex number of the edge's first vertex. The vertex number is the /// first field of the lines within the *vertices section and ranges from /// 1 to the number of vertices. ///
secondVertexNumber System.Int32 /// Vertex number of the edge's second vertex. ///
weight Double /// Edge weight. ///
리턴 System