ReadInt32Value() public method

public ReadInt32Value ( ) : int
return 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();
 }