ReadInt32Value() 공개 메소드

public ReadInt32Value ( ) : int
리턴 int
예제 #1
0
 static void ReadTimestampSet(ref int value, ref FbxSection section)
 {
     if (value != -1)
     {
         throw new InvalidOperationException("Value " + section.Name + " has already been provided.");
     }
     value = section.ReadInt32Value();
 }
예제 #2
0
 static void ReadTimestampSet(ref int value, ref FbxSection section)
 {
     if(value != -1)
         throw new InvalidOperationException("Value " + section.Name + " has already been provided.");
     value = section.ReadInt32Value();
 }