OpenCvSharp.NativeMethods.core_FileStorage_writeScalar_String C# (CSharp) Method

core_FileStorage_writeScalar_String() private method

private core_FileStorage_writeScalar_String ( IntPtr fs, [ value ) : void
fs System.IntPtr
value [
return void
        public static extern void core_FileStorage_writeScalar_String(IntPtr fs, [MarshalAs(UnmanagedType.LPStr)] string value);

Usage Example

コード例 #1
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="value"></param>
 public void WriteScalar(string value)
 {
     if (value == null)
     {
         throw new ArgumentNullException(nameof(value));
     }
     NativeMethods.core_FileStorage_writeScalar_String(ptr, value);
 }
All Usage Examples Of OpenCvSharp.NativeMethods::core_FileStorage_writeScalar_String
NativeMethods